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 accc764 commit b8b7d39Copy full SHA for b8b7d39
tests/frontier/opcodes/test_push.py
@@ -115,7 +115,7 @@ def test_stack_overflow(
115
"""
116
contract_code: Bytecode = Bytecode()
117
for _ in range(stack_height - 2):
118
- contract_code += Op.PUSH0 # mostly use push0 to avoid contract size limit exceeded
+ contract_code += Op.PUSH1(0) # mostly push 0 to avoid contract size limit exceeded
119
contract_code += push_opcode(excerpt) * 2 + Op.SSTORE
120
121
contract = pre.deploy_contract(contract_code)
0 commit comments