Removes calls to insert_default_bank_hash_stats() in tests (#30311)

This commit is contained in:
Brooks 2023-02-14 15:00:38 -05:00 committed by GitHub
parent b9b8cd9ccc
commit 2e885cf99a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -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);