This commit is contained in:
Jeff Washington (jwash) 2022-02-23 18:07:00 -06:00 committed by GitHub
parent 7ee549e5ae
commit c0d0724be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -562,7 +562,7 @@ impl AccountsHash {
bin: usize, bin: usize,
first_items: &'a mut Vec<Pubkey>, first_items: &'a mut Vec<Pubkey>,
pubkey_division: &'b [Vec<Vec<CalculateHashIntermediate>>], pubkey_division: &'b [Vec<Vec<CalculateHashIntermediate>>],
indexes: &'a mut Vec<usize>, indexes: &'a mut [usize],
first_item_to_pubkey_division: &'a mut Vec<usize>, first_item_to_pubkey_division: &'a mut Vec<usize>,
) -> &'b CalculateHashIntermediate { ) -> &'b CalculateHashIntermediate {
let first_item = first_items[min_index]; let first_item = first_items[min_index];

View File

@ -7211,7 +7211,7 @@ pub(crate) mod tests {
fn store_accounts_for_rent_test( fn store_accounts_for_rent_test(
bank: &Bank, bank: &Bank,
keypairs: &mut Vec<Keypair>, keypairs: &mut [Keypair],
mock_program_id: Pubkey, mock_program_id: Pubkey,
generic_rent_due_for_system_account: u64, generic_rent_due_for_system_account: u64,
) { ) {