From d40a585bd79ae6fe0efc6587ccceafb5e864779e Mon Sep 17 00:00:00 2001 From: boufni95 Date: Tue, 25 Jun 2024 20:25:05 +0200 Subject: [PATCH] up --- src/services/lnd/lsp.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/services/lnd/lsp.ts b/src/services/lnd/lsp.ts index f126804a..3f1007e8 100644 --- a/src/services/lnd/lsp.ts +++ b/src/services/lnd/lsp.ts @@ -308,6 +308,7 @@ export class VoltageLSP extends LSP { const invoice = await this.lnd.NewInvoice(this.settings.channelThreshold, "open channel", 60 * 60) const res = await this.proposal(invoice.payRequest, fee.id) + this.log("proposal res", res) const decoded = await this.lnd.DecodeInvoice(res.jit_bolt11) if (decoded.numSatoshis !== this.settings.channelThreshold + feeSats) { this.log("invoice of amount", decoded.numSatoshis, "does not match expected amount of", this.settings.channelThreshold + feeSats)