rename var (#19588)
This commit is contained in:
parent
9cc57fb076
commit
3936c10aa0
|
@ -6411,8 +6411,8 @@ impl AccountsDb {
|
||||||
#[allow(clippy::stable_sort_primitive)]
|
#[allow(clippy::stable_sort_primitive)]
|
||||||
roots.sort();
|
roots.sort();
|
||||||
info!("{}: accounts_index roots: {:?}", label, roots,);
|
info!("{}: accounts_index roots: {:?}", label, roots,);
|
||||||
self.accounts_index.account_maps.iter().for_each(|i| {
|
self.accounts_index.account_maps.iter().for_each(|map| {
|
||||||
for (pubkey, account_entry) in i.read().unwrap().iter() {
|
for (pubkey, account_entry) in map.read().unwrap().iter() {
|
||||||
info!(" key: {} ref_count: {}", pubkey, account_entry.ref_count(),);
|
info!(" key: {} ref_count: {}", pubkey, account_entry.ref_count(),);
|
||||||
info!(
|
info!(
|
||||||
" slots: {:?}",
|
" slots: {:?}",
|
||||||
|
|
Loading…
Reference in New Issue