From d909b7c80b7727151b56f1726381af4f0777d698 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Wed, 2 Mar 2022 11:10:40 -0600 Subject: [PATCH] log hash and lamport result of calculate_accounts_hash_without_index (#23425) --- 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 eb3b2d8bd7..979f6e8a9c 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -5777,6 +5777,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 {