We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22612e3 commit d2c2f5cCopy full SHA for d2c2f5c
tests/zkevm/test_worst_compute.py
@@ -85,9 +85,7 @@ def test_worst_keccak(
85
)
86
if len(code) > MAX_CODE_SIZE:
87
# Must never happen, but keep it as a sanity check.
88
- raise ValueError(
89
- f"Code size {len(code)} exceeds maximum code size {MAX_CODE_SIZE} {bytes(sum([Op.SHA3(0, optimal_input_length) + Op.POP] * 1))}"
90
- )
+ raise ValueError(f"Code size {len(code)} exceeds maximum code size {MAX_CODE_SIZE}")
91
92
code_address = pre.deploy_contract(code=bytes(code))
93
0 commit comments