Support transaction signing by heterogenous lists of keypairs (bp #8342) (#8362)

automerge
This commit is contained in:
mergify[bot]
2020-02-20 14:02:14 -08:00
committed by GitHub
parent b4eb81546e
commit 9dffc3abe4
16 changed files with 191 additions and 81 deletions

View File

@@ -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

View File

@@ -372,7 +372,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