diff --git a/runtime/src/accounts_index.rs b/runtime/src/accounts_index.rs index e7aca4ef12..8562efce5e 100644 --- a/runtime/src/accounts_index.rs +++ b/runtime/src/accounts_index.rs @@ -502,7 +502,7 @@ impl AccountsIndex { if w_account_entry.is_none() { let new_entry = Arc::new(AccountMapEntryInner { ref_count: AtomicU64::new(0), - slot_list: RwLock::new(SlotList::with_capacity(32)), + slot_list: RwLock::new(SlotList::with_capacity(1)), }); let mut w_account_maps = self.account_maps.write().unwrap(); let account_entry = w_account_maps.entry(*pubkey).or_insert_with(|| {