From 9f8228c158b64863a3c6842f5d4b6e382d941960 Mon Sep 17 00:00:00 2001 From: jeff washington Date: Mon, 2 Jan 2023 16:28:18 -0600 Subject: [PATCH] remove unnecessary type --- runtime/src/accounts_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 02f28e571e1a85..b780bdcb6f0f53 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -8873,7 +8873,7 @@ impl AccountsDb { .take(per_pass) .collect::>(); roots_in_this_pass.into_par_iter().for_each(|slot| { - let storage_maps: SnapshotStorage = self + let storage_maps = self .storage .get_slot_storage_entries(*slot) .unwrap_or_default();