Removes calls to insert_default_bank_hash_stats() in tests (#30311)
This commit is contained in:
parent
b9b8cd9ccc
commit
2e885cf99a
|
@ -11911,13 +11911,11 @@ pub mod tests {
|
|||
accounts.add_root(0);
|
||||
|
||||
let mut current_slot = 1;
|
||||
accounts.insert_default_bank_hash_stats(current_slot, current_slot - 1);
|
||||
accounts.store_for_tests(current_slot, &[(&pubkey, &account)]);
|
||||
accounts.calculate_accounts_delta_hash(current_slot);
|
||||
accounts.add_root_and_flush_write_cache(current_slot);
|
||||
|
||||
current_slot += 1;
|
||||
accounts.insert_default_bank_hash_stats(current_slot, current_slot - 1);
|
||||
accounts.store_for_tests(current_slot, &[(&pubkey, &zero_lamport_account)]);
|
||||
accounts.calculate_accounts_delta_hash(current_slot);
|
||||
accounts.add_root_and_flush_write_cache(current_slot);
|
||||
|
@ -11926,7 +11924,6 @@ pub mod tests {
|
|||
|
||||
// Otherwise slot 2 will not be removed
|
||||
current_slot += 1;
|
||||
accounts.insert_default_bank_hash_stats(current_slot, current_slot - 1);
|
||||
accounts.calculate_accounts_delta_hash(current_slot);
|
||||
accounts.add_root_and_flush_write_cache(current_slot);
|
||||
|
||||
|
|
Loading…
Reference in New Issue