Skip to content

Commit

Permalink
Conform descriptions with Yellow Paper
Browse files Browse the repository at this point in the history
Revert changes of f360fc8 to conform with the Ethereum Yellow Paper.
  • Loading branch information
0xPhaze authored Apr 7, 2023
1 parent 8e4cb73 commit 0ff2e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyevmasm/evmasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ def __repr__(self):
0x11: ("GT", 0, 2, 1, 3, "Greater-than comparison."),
0x12: ("SLT", 0, 2, 1, 3, "Signed less-than comparison."),
0x13: ("SGT", 0, 2, 1, 3, "Signed greater-than comparison."),
0x14: ("EQ", 0, 2, 1, 3, "Equality comparison."),
0x14: ("EQ", 0, 2, 1, 3, "Simple not operator."),
0x15: ("ISZERO", 0, 1, 1, 3, "Equals zero comparison."),
0x16: ("AND", 0, 2, 1, 3, "Bitwise AND operation."),
0x17: ("OR", 0, 2, 1, 3, "Bitwise OR operation."),
Expand Down

0 comments on commit 0ff2e0f

Please sign in to comment.