Skip to content

Commit

Permalink
Fix for queuing wallets action which doesn't go through node.wallets (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
clemahieu authored Jan 20, 2024
1 parent 87e7d4d commit 5f69bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/node/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ());
});
Expand Down

0 comments on commit 5f69bed

Please sign in to comment.