migrate tests to get_slot_storage_entry (#29515)

This commit is contained in:
Jeff Washington (jwash) 2023-01-04 15:12:48 -06:00 committed by GitHub
parent 4e636ab153
commit fc8cd82309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 11 deletions

View File

@ -4249,17 +4249,14 @@ impl AccountsDb {
#[cfg(test)]
pub(crate) fn sizes_of_accounts_in_storage_for_tests(&self, slot: Slot) -> Vec<usize> {
self.get_storages_for_slot(slot)
.map(|storages| {
storages
.iter()
.flat_map(|storage| {
self.storage
.get_slot_storage_entry(slot)
.map(|storage| {
storage
.accounts
.account_iter()
.map(|account| account.stored_size)
})
.collect::<Vec<_>>()
.collect()
})
.unwrap_or_default()
}