rename unused parameter for clarity (#27271)

This commit is contained in:
Jeff Washington (jwash) 2022-08-22 10:27:24 -05:00 committed by GitHub
parent 9d5029da15
commit ab826b71a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2252,7 +2252,7 @@ impl AccountsDb {
};
if no_delete {
let mut pending_store_ids = HashSet::new();
for (_bank_id, account_info) in account_infos {
for (_slot, account_info) in account_infos {
if !already_counted.contains(&account_info.store_id()) {
pending_store_ids.insert(account_info.store_id());
}