diff --git a/runtime/src/snapshot_utils.rs b/runtime/src/snapshot_utils.rs index 2c14a49248..0ee9fa0caa 100644 --- a/runtime/src/snapshot_utils.rs +++ b/runtime/src/snapshot_utils.rs @@ -3,7 +3,7 @@ use { account_storage::AccountStorageMap, accounts_db::{ AccountShrinkThreshold, AccountsDbConfig, AtomicAppendVecId, - CalcAccountsHashDataSource, SnapshotStorageOne, SnapshotStorages, SnapshotStoragesOne, + CalcAccountsHashDataSource, SnapshotStorageOne, SnapshotStoragesOne, }, accounts_index::AccountSecondaryIndexes, accounts_update_notifier_interface::AccountsUpdateNotifier, @@ -908,11 +908,11 @@ pub fn add_bank_snapshot( }) } -/// serializing needs Vec>, but data structure at runtime is Vec<...> +/// serializing needs Vec>, but data structure at runtime is Vec /// translates to what we need pub(crate) fn get_storages_to_serialize( snapshot_storages: &[SnapshotStorageOne], -) -> SnapshotStorages { +) -> Vec> { snapshot_storages .iter() .map(|storage| vec![Arc::clone(storage)]) diff --git a/runtime/src/sorted_storages.rs b/runtime/src/sorted_storages.rs index 3ea64fcba9..2529591f4c 100644 --- a/runtime/src/sorted_storages.rs +++ b/runtime/src/sorted_storages.rs @@ -9,7 +9,7 @@ use { }, }; -/// Provide access to SnapshotStorageOnes sorted by slot +/// Provide access to SnapshotStorageOnes by slot pub struct SortedStorages<'a> { /// range of slots where storages exist (likely sparse) range: Range,