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 66f10dc commit 99f249dCopy full SHA for 99f249d
tests/zkevm/test_worst_compute.py
@@ -110,7 +110,7 @@ def test_worst_keccak(
110
@pytest.mark.parametrize(
111
"gas_limit",
112
[
113
- 36_000_000,
+ Environment().gas_limit,
114
],
115
)
116
def test_worst_modexp(
@@ -156,7 +156,7 @@ def test_worst_modexp(
156
# Must never happen, but keep it as a sanity check.
157
raise ValueError(f"Code size {len(code)} exceeds maximum code size {MAX_CODE_SIZE}")
158
159
- code_address = pre.deploy_contract(code=bytes(code))
+ code_address = pre.deploy_contract(code=code)
160
161
tx = Transaction(
162
to=code_address,
0 commit comments