From 8956bc8809de92faeb18bb420b1bf412308ecf83 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Wed, 10 Apr 2024 15:59:42 +0200 Subject: [PATCH] Fix LND autowithdrawal error message (#1052) --- worker/autowithdraw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/autowithdraw.js b/worker/autowithdraw.js index f0685a05..00bcecc4 100644 --- a/worker/autowithdraw.js +++ b/worker/autowithdraw.js @@ -123,7 +123,7 @@ async function autowithdrawLND ({ amount, maxFee }, { me, models, lnd }) { }) if (!wallet || !wallet.walletLND) { - throw new Error('no lightning address wallet found') + throw new Error('no lnd wallet found') } const { walletLND: { cert, macaroon, socket } } = wallet