mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 14:22:44 +01:00
Minor tls spelling fix
This commit is contained in:
parent
a8fd04e2f0
commit
3ecce35b11
1 changed files with 2 additions and 2 deletions
|
@ -9,11 +9,11 @@ class LndApi implements AbstractLightningApi {
|
|||
private lnd: any;
|
||||
constructor() {
|
||||
try {
|
||||
const tsl = fs.readFileSync(config.LN_NODE_AUTH.TLS_CERT_PATH).toString('base64');
|
||||
const tls = fs.readFileSync(config.LN_NODE_AUTH.TLS_CERT_PATH).toString('base64');
|
||||
const macaroon = fs.readFileSync(config.LN_NODE_AUTH.MACAROON_PATH).toString('base64');
|
||||
|
||||
const { lnd } = lnService.authenticatedLndGrpc({
|
||||
cert: tsl,
|
||||
cert: tls,
|
||||
macaroon: macaroon,
|
||||
socket: 'localhost:10009',
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue