Skip to content

Commit

Permalink
Fixed copy paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
RickiNano committed Jul 9, 2024
1 parent 1715e78 commit 175d9d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nano/secure/ledger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1330,8 +1330,8 @@ bool nano::ledger::migrate_lmdb_to_rocksdb (std::filesystem::path const & data_p
});
logger.info (nano::log::type::ledger, "Finished converting {} entries", count.load ());

table_size = store.count (store.tx_begin_read (), tables::confirmation_height);
logger.info (nano::log::type::ledger, "Step 4 of 7: Converting {} entries from confirmation_height table", table_size);
table_size = store.count (store.tx_begin_read (), tables::accounts);
logger.info (nano::log::type::ledger, "Step 4 of 7: Converting {} entries from accounts table", table_size);
count = 0;
store.account.for_each_par (
[&] (store::read_transaction const & /*unused*/, auto i, auto n) {
Expand Down

0 comments on commit 175d9d7

Please sign in to comment.