From 75d0a8e3d9f7f32e4dbecb552a6eb0f32805e9e1 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Wed, 5 Mar 2025 07:29:21 -0600 Subject: [PATCH] Fix undefined db for wallet logs (#1944) --- wallets/payment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallets/payment.js b/wallets/payment.js index 6b21f20d..1a5a038d 100644 --- a/wallets/payment.js +++ b/wallets/payment.js @@ -105,7 +105,7 @@ export function useWalletPayment () { // if we reach this line, no wallet payment succeeded throw new WalletPaymentAggregateError([aggregateError], latestInvoice) - }, [wallets, invoiceHelper, sendPayment]) + }, [wallets, invoiceHelper, sendPayment, loggerFactory]) } function invoiceController (inv, isInvoice) {