From 83c614da3ccc291b64d4a52969389a1130a9542c Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Fri, 15 Jul 2022 17:17:17 -0500 Subject: [PATCH] change type to be more clear (#26646) --- runtime/src/accounts_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 7412fcddd9..18987078ca 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -2305,7 +2305,7 @@ impl AccountsDb { pub(crate) fn purge_keys_exact<'a, C: 'a>( &'a self, pubkey_to_slot_set: impl Iterator, - ) -> Vec<(u64, AccountInfo)> + ) -> Vec<(Slot, AccountInfo)> where C: Contains<'a, Slot>, {