From 34b6c142b17b85ef59b2499590e35c5779040742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Tue, 1 Oct 2024 16:46:31 +0200 Subject: [PATCH] Fix --- nano/node/bootstrap_ascending/database_scan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano/node/bootstrap_ascending/database_scan.cpp b/nano/node/bootstrap_ascending/database_scan.cpp index 7a7b287fc0..5fac775c37 100644 --- a/nano/node/bootstrap_ascending/database_scan.cpp +++ b/nano/node/bootstrap_ascending/database_scan.cpp @@ -136,7 +136,7 @@ std::deque nano::bootstrap_ascending::pending_database_iterator:: } // If we didn't advance to the next account, perform a fresh lookup - if (it != end && it->first.account != starting_account) + if (it != end && it->first.account == starting_account) { it = ledger.store.pending.begin (transaction, { starting_account.number () + 1, 0 }); }