change type to be more clear (#26646)

This commit is contained in:
Jeff Washington (jwash) 2022-07-15 17:17:17 -05:00 committed by GitHub
parent 47716a5e01
commit 83c614da3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2305,7 +2305,7 @@ impl AccountsDb {
pub(crate) fn purge_keys_exact<'a, C: 'a>(
&'a self,
pubkey_to_slot_set: impl Iterator<Item = &'a (Pubkey, C)>,
) -> Vec<(u64, AccountInfo)>
) -> Vec<(Slot, AccountInfo)>
where
C: Contains<'a, Slot>,
{