Skip to content

Commit

Permalink
fix messed up opcode args validation
Browse files Browse the repository at this point in the history
  • Loading branch information
winsvega committed Apr 26, 2024
1 parent e9ccd27 commit f8fce7d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions tests/cancun/eip1153_tstore/test_yul_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,17 @@ def test_yul_coverage(
nonce=0,
code=Op.SHL(0x0000000000000000000000000000000000000000000000000000000000000001, 0x00)
+ Op.SHR(0x0000000000000000000000000000000000000000000000000000000000000001, 0x00)
+ Op.SWAP1(0x0A, 0x0B)
+ Op.DUP2(0x01, 0x02)
+ Op.PUSH1(0x0A)
+ Op.PUSH1(0x0B)
+ Op.PUSH1(0x0C)
+ Op.PUSH1(0x0D)
+ Op.PUSH1(0x0E)
+ Op.SWAP1()
+ Op.DUP2()
+ Op.PUSH0()
+ Op.PUSH3(0x01, 0x01, 0x01)
+ Op.PUSH4(0x01, 0x02, 0x03, 0x04)
+ Op.PUSH2(0x0102)
+ Op.PUSH3(0x010203)
+ Op.PUSH4(0x01020304)
+ Op.POP(0x01),
storage={},
),
Expand Down

0 comments on commit f8fce7d

Please sign in to comment.