AcctIdx: minor code cleanup (#21547)

This commit is contained in:
Jeff Washington (jwash)
2021-12-02 11:05:54 -06:00
committed by GitHub
parent 6bb884836c
commit 8dfa83c579
2 changed files with 4 additions and 6 deletions

View File

@@ -1213,10 +1213,8 @@ impl<T: IndexValue> AccountsIndex<T> {
if let AccountIndexGetResult::Found(list_r, index) =
self.get(&pubkey, Some(ancestors), max_root)
{
func(
&pubkey,
(&list_r.slot_list()[index].1, list_r.slot_list()[index].0),
);
let entry = &list_r.slot_list()[index];
func(&pubkey, (&entry.1, entry.0));
}
if config.is_aborted() {
break;