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)