From 2e885cf99af02ede77bed78e0af5542cedc3bb4e Mon Sep 17 00:00:00 2001 From: Brooks Date: Tue, 14 Feb 2023 15:00:38 -0500 Subject: [PATCH] Removes calls to insert_default_bank_hash_stats() in tests (#30311) --- runtime/src/accounts_db.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index f5ef15afe5..5e3a5ef1c4 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -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);