diff --git a/runtime/src/accounts_hash.rs b/runtime/src/accounts_hash.rs index 52178fd5ce..c4cf7380bd 100644 --- a/runtime/src/accounts_hash.rs +++ b/runtime/src/accounts_hash.rs @@ -687,14 +687,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 - ); } }