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

@ -1045,7 +1045,6 @@ mod tests {
&[],
&[],
Hash::default(),
0,
vec![native_loader::id()],
instructions,
);
@ -1069,7 +1068,6 @@ mod tests {
&[&keypair],
&[],
Hash::default(),
0,
vec![native_loader::id()],
instructions,
);
@ -1101,7 +1099,6 @@ mod tests {
&[&keypair],
&[],
Hash::default(),
0,
vec![Pubkey::default()],
instructions,
);
@ -1129,7 +1126,6 @@ mod tests {
&[&keypair],
&[],
Hash::default(),
10,
vec![native_loader::id()],
instructions,
);
@ -1168,7 +1164,6 @@ mod tests {
&[&keypair],
&[key1],
Hash::default(),
0,
vec![native_loader::id()],
instructions,
);
@ -1240,7 +1235,6 @@ mod tests {
&[&keypair],
&[],
Hash::default(),
0,
vec![key6],
instructions,
);
@ -1274,7 +1268,6 @@ mod tests {
&[&keypair],
&[],
Hash::default(),
0,
vec![key1],
instructions,
);
@ -1307,7 +1300,6 @@ mod tests {
&[&keypair],
&[],
Hash::default(),
0,
vec![key1],
instructions,
);
@ -1356,7 +1348,6 @@ mod tests {
&[&keypair],
&[],
Hash::default(),
0,
vec![key1, key2],
instructions,
);
@ -1400,7 +1391,6 @@ mod tests {
&[&keypair],
&[pubkey],
Hash::default(),
0,
vec![native_loader::id()],
instructions,
);

View File

@ -1031,7 +1031,6 @@ mod tests {
&[&mint_keypair],
instructions,
genesis_block.hash(),
0,
);
assert_eq!(
bank.process_transaction(&tx).unwrap_err(),
@ -1057,7 +1056,6 @@ mod tests {
&[&mint_keypair],
instructions,
genesis_block.hash(),
0,
);
bank.process_transaction(&tx).unwrap();
assert_eq!(bank.get_balance(&mint_keypair.pubkey()), 0);
@ -1614,7 +1612,6 @@ mod tests {
&Vec::<&Keypair>::new(),
vec![move_instruction],
bank.last_blockhash(),
0,
);
assert_eq!(bank.process_transaction(&tx), Ok(()));