From e59373f7079dea8ad8a63dca7a265aede6f84bce Mon Sep 17 00:00:00 2001 From: boufni95 Date: Mon, 23 Oct 2023 19:50:49 +0200 Subject: [PATCH] up --- src/services/lnd/payInvoiceReq.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/services/lnd/payInvoiceReq.ts b/src/services/lnd/payInvoiceReq.ts index eb1384bd..47d0766b 100644 --- a/src/services/lnd/payInvoiceReq.ts +++ b/src/services/lnd/payInvoiceReq.ts @@ -1,6 +1,6 @@ import { OpenChannelRequest } from "../../../proto/lnd/lightning"; import { SendPaymentRequest } from "../../../proto/lnd/router"; - +//@ts-ignore export const PayInvoiceReq = (invoice: string, amount: number, feeLimit: number): SendPaymentRequest => ({ amt: BigInt(amount), feeLimitSat: BigInt(feeLimit), @@ -25,6 +25,4 @@ export const PayInvoiceReq = (invoice: string, amount: number, feeLimit: number) paymentHash: Buffer.alloc(0), routeHints: [], timePref: 0, - //@ts-ignore - outgoingChanId: undefined }) \ No newline at end of file