From 4435175434a3017196195802978439f9dc813220 Mon Sep 17 00:00:00 2001 From: boufni95 Date: Mon, 23 Oct 2023 20:13:31 +0200 Subject: [PATCH] up --- src/services/lnd/lnd.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/lnd/lnd.ts b/src/services/lnd/lnd.ts index 8805d2a9..8d6d8f1a 100644 --- a/src/services/lnd/lnd.ts +++ b/src/services/lnd/lnd.ts @@ -77,7 +77,6 @@ export default class { if (!info.syncedToChain || !info.syncedToGraph) { throw new Error("not synced") } - console.log(info) } RestartStreams() { @@ -190,6 +189,7 @@ export default class { async PayInvoice(invoice: string, amount: number, feeLimit: number): Promise { await this.Health() + console.log(await this.lightning.channelBalance({})) const abortController = new AbortController() const req = PayInvoiceReq(invoice, amount, feeLimit) console.log("sending payment:", req)