From 0ff2e0f4667240db1c83f5ab193ec16595ccfd96 Mon Sep 17 00:00:00 2001 From: 0xPhaze <103113487+0xPhaze@users.noreply.github.com> Date: Fri, 7 Apr 2023 12:55:08 +0100 Subject: [PATCH] Conform descriptions with Yellow Paper Revert changes of https://github.com/crytic/pyevmasm/commit/f360fc810c2049c072ae3fa6cfb17782eff1043b to conform with the Ethereum Yellow Paper. --- pyevmasm/evmasm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyevmasm/evmasm.py b/pyevmasm/evmasm.py index 04e335c..e49f739 100644 --- a/pyevmasm/evmasm.py +++ b/pyevmasm/evmasm.py @@ -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."),