Skip to content

Commit

Permalink
chore: output used gas
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Oct 26, 2023
1 parent e5fcbde commit 51bec2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine-tests/src/tests/sanity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,8 @@ fn test_solidity_pure_bench() {

assert!(
result.gas_used > 38_000_000,
"Over 38 million EVM gas is used"
"Over 38 million EVM gas is used {}",
result.gas_used
);
let near_gas = profile.all_gas();
assert!(
Expand Down

0 comments on commit 51bec2e

Please sign in to comment.