Skip to content

Commit 1c2e150

Browse files
committed
fix linter
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent d982125 commit 1c2e150

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
@@ -47,7 +47,7 @@ def test_worst_bytecode(
4747
attack_code = sum(
4848
[(Op.EXTCODESIZE(contract_addrs[i]) + Op.POP) for i in range(num_called_contracts)]
4949
)
50-
attack_contract = pre.deploy_contract(code=attack_code)
50+
attack_contract = pre.deploy_contract(code=bytes(attack_code))
5151

5252
tx = Transaction(
5353
to=attack_contract,

0 commit comments

Comments
 (0)