Skip to content

Commit 08c421c

Browse files
feat(tests): do not use fallback for code size being returned None anymore
1 parent 676d87f commit 08c421c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/zkevm/test_worst_bytecode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_worst_bytecode_single_opcode(
6969
# but also the quadratic memory expansion costs which have to be paid each time the
7070
# memory is being setup
7171
attack_gas_limit = 100_000_000
72-
max_contract_size = fork.max_code_size() or 24 * 1024 # Uses Spurious Dragon limit by default
72+
max_contract_size = fork.max_code_size()
7373

7474
gas_costs = fork.gas_costs()
7575

0 commit comments

Comments
 (0)