From 5f69bed9b889bd419d222b855d1d4774f89f1395 Mon Sep 17 00:00:00 2001 From: clemahieu Date: Sat, 20 Jan 2024 09:13:41 +0000 Subject: [PATCH] Fix for queuing wallets action which doesn't go through node.wallets (#4377) --- nano/node/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano/node/wallet.cpp b/nano/node/wallet.cpp index f2e05c6c..c98beb18 100644 --- a/nano/node/wallet.cpp +++ b/nano/node/wallet.cpp @@ -700,7 +700,7 @@ bool nano::wallet::enter_password (store::transaction const & transaction_a, std if (!result) { auto this_l = shared_from_this (); - wallets.node.wallets.queue_wallet_action (nano::wallets::high_priority, this_l, [this_l] (nano::wallet & wallet) { + wallets.queue_wallet_action (nano::wallets::high_priority, this_l, [this_l] (nano::wallet & wallet) { // Wallets must survive node lifetime this_l->search_receivable (this_l->wallets.tx_begin_read ()); });