diff --git a/runtime/src/accounts_hash.rs b/runtime/src/accounts_hash.rs index 5564bcb62b..8fb0f2e822 100644 --- a/runtime/src/accounts_hash.rs +++ b/runtime/src/accounts_hash.rs @@ -677,14 +677,6 @@ impl AccountsHash { i = k; look_for_first_key = false; continue 'outer; - } else { - let prev = &slice[k - 1]; - assert!( - !(prev.slot == now.slot - && prev.version == now.version - && (prev.hash != now.hash || prev.lamports != now.lamports)), - "Conflicting store data. Pubkey: {}, Slot: {}, Version: {}, Hashes: {}, {}, Lamports: {}, {}", now.pubkey, now.slot, now.version, prev.hash, now.hash, prev.lamports, now.lamports - ); } }