Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
wborgeaud committed Sep 25, 2023
1 parent 5048631 commit e57873f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion evm/tests/basic_smart_contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fn test_basic_smart_contract() -> anyhow::Result<()> {
block_gas_used: gas_used.into(),
block_bloom: [0.into(); 8],
block_base_fee: 0xa.into(),
block_random: Default::default()
block_random: Default::default(),
};

let mut contract_code = HashMap::new();
Expand Down
2 changes: 1 addition & 1 deletion evm/tests/log_opcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ fn test_log_with_aggreg() -> anyhow::Result<()> {
.unwrap(),
U256::from_dec_str("2722259584404615024560450425766186844160").unwrap(),
],
block_random: Default::default()
block_random: Default::default(),
};

let beneficiary_account_after = AccountRlp {
Expand Down
2 changes: 1 addition & 1 deletion evm/tests/self_balance_gas_cost.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ fn self_balance_gas_cost() -> anyhow::Result<()> {
block_gas_used: gas_used.into(),
block_bloom: [0.into(); 8],
block_base_fee: 0xa.into(),
block_random: Default::default()
block_random: Default::default(),
};

let mut contract_code = HashMap::new();
Expand Down

0 comments on commit e57873f

Please sign in to comment.