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 0bb59f5 commit d982125Copy full SHA for d982125
tests/zkevm/test_worst_bytecode.py
@@ -40,8 +40,9 @@ def test_worst_bytecode(
40
41
contract_addrs = []
42
for i in range(num_called_contracts):
43
- code = Op.JUMPDEST * (MAX_CONTRACT_SIZE - 1 - 10) + Op.PUSH10(i)
44
- contract_addrs.append(pre.deploy_contract(code=code))
+ contract_addrs.append(
+ pre.deploy_contract(code=Op.JUMPDEST * (MAX_CONTRACT_SIZE - 1 - 10) + Op.PUSH10(i))
45
+ )
46
47
attack_code = sum(
48
[(Op.EXTCODESIZE(contract_addrs[i]) + Op.POP) for i in range(num_called_contracts)]
0 commit comments