diff --git a/runtime/src/accounts_index.rs b/runtime/src/accounts_index.rs index d674c08120..bb5cffdd19 100644 --- a/runtime/src/accounts_index.rs +++ b/runtime/src/accounts_index.rs @@ -1504,14 +1504,12 @@ impl = HashSet::new(); slot_list.retain(|(slot, value)| { let should_purge = Self::can_purge_older_entries(max_clean_root, newest_root_in_slot_list, *slot) && !value.is_cached(); if should_purge { reclaims.push((*slot, value.clone())); - purged_slots.insert(*slot); } !should_purge });