Skip to content

Commit ad6b424

Browse files
committed
fix(benchmark): restore skip_gas_used_validation flag
Re-add skip_gas_used_validation=True to both blockchain_test calls as it was accidentally removed. This flag is still needed alongside the expected_receipt validation.
1 parent c044cb3 commit ad6b424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/benchmark/bloatnet/test_multi_opcode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def test_bloatnet_balance_extcodesize(
197197
pre=pre,
198198
blocks=[Block(txs=[attack_tx])],
199199
post=post,
200-
# Gas validation is now handled by expected_receipt
200+
skip_gas_used_validation=True,
201201
)
202202

203203

@@ -360,5 +360,5 @@ def test_bloatnet_balance_extcodecopy(
360360
pre=pre,
361361
blocks=[Block(txs=[attack_tx])],
362362
post=post,
363-
# Gas validation is now handled by expected_receipt
363+
skip_gas_used_validation=True,
364364
)

0 commit comments

Comments
 (0)