Support transaction signing by heterogenous lists of keypairs (#8342)
automerge
This commit is contained in:
@ -61,7 +61,7 @@ fn fill_epoch_with_votes(
|
||||
Some(&mint_pubkey),
|
||||
);
|
||||
assert!(bank_client
|
||||
.send_message(&[&mint_keypair, &vote_keypair], message)
|
||||
.send_message(&[mint_keypair, vote_keypair], message)
|
||||
.is_ok());
|
||||
}
|
||||
bank
|
||||
|
@ -371,7 +371,7 @@ fn submit_proof(
|
||||
);
|
||||
|
||||
assert_matches!(
|
||||
bank_client.send_message(&[&mint_keypair, &storage_keypair], message),
|
||||
bank_client.send_message(&[mint_keypair, storage_keypair], message),
|
||||
Ok(_)
|
||||
);
|
||||
ProofStatus::Valid
|
||||
|
Reference in New Issue
Block a user