Delete lots of fee parameters

So many zeros!
This commit is contained in:
Greg Fitzgerald
2019-03-29 17:29:20 -06:00
parent 7896e8288d
commit 5646daa820
14 changed files with 34 additions and 64 deletions

View File

@@ -18,7 +18,6 @@ pub fn test_multisig_tx() -> Transaction {
let keypair1 = Keypair::new();
let keypairs = vec![&keypair0, &keypair1];
let lamports = 5;
let fee = 2;
let blockhash = Hash::default();
let system_instruction = SystemInstruction::Move { lamports };
@@ -31,7 +30,6 @@ pub fn test_multisig_tx() -> Transaction {
&keypairs,
&[],
blockhash,
fee,
program_ids,
instructions,
)