From eb5f95ec8f92fa5edc13551f94ffb1711f59fa22 Mon Sep 17 00:00:00 2001 From: boufni95 Date: Tue, 25 Jun 2024 20:49:25 +0200 Subject: [PATCH] up --- src/services/lnd/lsp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/lnd/lsp.ts b/src/services/lnd/lsp.ts index 3f1007e8..b8d85edc 100644 --- a/src/services/lnd/lsp.ts +++ b/src/services/lnd/lsp.ts @@ -308,7 +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) + this.log("proposal res", res, fee.id) 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)