From e241906db24a2fdb8492023b8b9a612b5460c0c8 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Wed, 29 Jun 2022 10:42:34 -0500 Subject: [PATCH] remove outdated, confusing comment (#26315) --- runtime/src/accounts_db.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 9bf3b9d28d..b1fe6b48c8 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -2532,7 +2532,6 @@ impl AccountsDb { let mut useful = 0; self.accounts_index.scan( pubkeys.iter(), - // return true if we want this item to remain in the cache |exists, slot_list, pubkey, ref_count| { let mut useless = true; if !exists { @@ -3023,7 +3022,6 @@ impl AccountsDb { accounts[..std::cmp::min(accounts.len(), count)] .iter() .map(|(key, _)| key), - // return true if we want this item to remain in the cache |exists, slot_list, pubkey, _ref_count| { let mut result = AccountsIndexScanResult::None; if exists {