Fix undefined db for wallet logs (#1944)

This commit is contained in:
ekzyis 2025-03-05 07:29:21 -06:00 committed by GitHub
parent d3e5af40ec
commit 75d0a8e3d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -105,7 +105,7 @@ export function useWalletPayment () {
// if we reach this line, no wallet payment succeeded // if we reach this line, no wallet payment succeeded
throw new WalletPaymentAggregateError([aggregateError], latestInvoice) throw new WalletPaymentAggregateError([aggregateError], latestInvoice)
}, [wallets, invoiceHelper, sendPayment]) }, [wallets, invoiceHelper, sendPayment, loggerFactory])
} }
function invoiceController (inv, isInvoice) { function invoiceController (inv, isInvoice) {