From d9cdff1509edb291ad8587e3bb28ce36831bdb5a Mon Sep 17 00:00:00 2001 From: boufni95 Date: Mon, 23 Oct 2023 19:43:33 +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 b8bbc6d4..e689aa38 100644 --- a/src/services/lnd/lnd.ts +++ b/src/services/lnd/lnd.ts @@ -191,7 +191,7 @@ export default class { await this.Health() const abortController = new AbortController() const req = PayInvoiceReq(invoice, amount, feeLimit) - this.log("sending payment:", req) + this.log("sending payment:", JSON.stringify(req)) const stream = this.router.sendPaymentV2(req, { abort: abortController.signal }) return new Promise((res, rej) => { stream.responses.onError(error => {