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;