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 d982125 commit 1c2e150Copy full SHA for 1c2e150
tests/zkevm/test_worst_bytecode.py
@@ -47,7 +47,7 @@ def test_worst_bytecode(
47
attack_code = sum(
48
[(Op.EXTCODESIZE(contract_addrs[i]) + Op.POP) for i in range(num_called_contracts)]
49
)
50
- attack_contract = pre.deploy_contract(code=attack_code)
+ attack_contract = pre.deploy_contract(code=bytes(attack_code))
51
52
tx = Transaction(
53
to=attack_contract,
0 commit comments