From c6f7867aa1be93c4171be827bf03cd5ccf58e582 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" <75863576+jeffwashington@users.noreply.github.com> Date: Fri, 14 May 2021 09:50:11 -0500 Subject: [PATCH] log mismatch (#17209) --- runtime/src/accounts_db.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 8d764ec250..c6fe7c65a7 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -3988,6 +3988,7 @@ impl AccountsDb { let computed_hash = loaded_account.compute_hash(*slot, pubkey); if computed_hash != loaded_hash { + info!("hash mismatch found: computed: {}, loaded: {}, pubkey: {}", computed_hash, loaded_hash, pubkey); mismatch_found .fetch_add(1, Ordering::Relaxed); return None;