Make space for a new Transaction::new

This commit is contained in:
Greg Fitzgerald
2019-03-26 17:14:28 -06:00
parent d497b99abb
commit 8c69c40834
9 changed files with 26 additions and 21 deletions

View File

@ -564,7 +564,10 @@ fn fund_keys(client: &ThinClient, source: &Keypair, dests: &[Keypair], lamports:
.map(|(k, m)| {
(
k.clone(),
Transaction::new(SystemInstruction::new_move_many(&k.pubkey(), &m)),
Transaction::new_unsigned_instructions(SystemInstruction::new_move_many(
&k.pubkey(),
&m,
)),
)
})
.collect();