Add docs to load_by_program_slot() (#32896)

This commit is contained in:
Brooks 2023-08-18 19:11:42 -04:00 committed by GitHub
parent a4c8cc3ce0
commit e28c819819
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 10 deletions

View File

@ -861,22 +861,19 @@ impl Accounts {
}
}
/// Returns all the accounts from `slot`
///
/// If `program_id` is `Some`, filter the results to those whose owner matches `program_id`
pub fn load_by_program_slot(
&self,
slot: Slot,
program_id: Option<&Pubkey>,
) -> Vec<TransactionAccount> {
self.scan_slot(slot, |stored_account| {
let hit = match program_id {
None => true,
Some(program_id) => stored_account.owner() == program_id,
};
if hit {
Some((*stored_account.pubkey(), stored_account.take_account()))
} else {
None
}
program_id
.map(|program_id| program_id == stored_account.owner())
.unwrap_or(true)
.then(|| (*stored_account.pubkey(), stored_account.take_account()))
})
}