Spell correction and add remove slot in AccountDB purge assert message (#26358)
nit spell. add remove slots in accoutdb purge assert message
This commit is contained in:
parent
d6b53fb173
commit
728986ddf4
|
@ -5166,7 +5166,11 @@ impl AccountsDb {
|
||||||
.fetch_add(handle_reclaims_elapsed.as_us(), Ordering::Relaxed);
|
.fetch_add(handle_reclaims_elapsed.as_us(), Ordering::Relaxed);
|
||||||
// After handling the reclaimed entries, this slot's
|
// After handling the reclaimed entries, this slot's
|
||||||
// storage entries should be purged from self.storage
|
// storage entries should be purged from self.storage
|
||||||
assert!(self.storage.get_slot_stores(remove_slot).is_none());
|
assert!(
|
||||||
|
self.storage.get_slot_stores(remove_slot).is_none(),
|
||||||
|
"slot {} is not none",
|
||||||
|
remove_slot
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(clippy::needless_collect)]
|
#[allow(clippy::needless_collect)]
|
||||||
|
|
|
@ -1713,7 +1713,7 @@ impl<T: IndexValue> AccountsIndex<T> {
|
||||||
|
|
||||||
// If the slot list is empty, remove the pubkey from `account_maps`. Make sure to grab the
|
// If the slot list is empty, remove the pubkey from `account_maps`. Make sure to grab the
|
||||||
// lock and double check the slot list is still empty, because another writer could have
|
// lock and double check the slot list is still empty, because another writer could have
|
||||||
// locked and inserted the pubkey inbetween when `is_slot_list_empty=true` and the call to
|
// locked and inserted the pubkey in-between when `is_slot_list_empty=true` and the call to
|
||||||
// remove() below.
|
// remove() below.
|
||||||
if is_slot_list_empty {
|
if is_slot_list_empty {
|
||||||
let w_maps = self.get_account_maps_write_lock(pubkey);
|
let w_maps = self.get_account_maps_write_lock(pubkey);
|
||||||
|
|
Loading…
Reference in New Issue