From db43c5d46dc3194cea6af458c1e98248a7cabb5b Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 15 Mar 2022 19:23:13 +0000 Subject: [PATCH] log hash and lamport result of calculate_accounts_hash_without_index (#23425) (#23676) (cherry picked from commit d909b7c80b7727151b56f1726381af4f0777d698) Co-authored-by: Jeff Washington (jwash) --- runtime/src/accounts_db.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 4f7f5b78e7..7930ebef08 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -5758,6 +5758,11 @@ impl AccountsDb { final_result = (hash, lamports); } + info!( + "calculate_accounts_hash_without_index: slot (exclusive): {} {:?}", + storages.range().end, + final_result + ); Ok(final_result) }; if let Some(thread_pool) = thread_pool {