Skip to content

Commit 46f41bb

Browse files
committed
Sort prague instructions (#942)
1 parent 99a7765 commit 46f41bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ethereum/prague/vm/instructions/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,14 +204,14 @@ class Ops(enum.Enum):
204204

205205
# System Operations
206206
CREATE = 0xF0
207-
RETURN = 0xF3
208207
CALL = 0xF1
209208
CALLCODE = 0xF2
209+
RETURN = 0xF3
210210
DELEGATECALL = 0xF4
211+
CREATE2 = 0xF5
211212
STATICCALL = 0xFA
212213
REVERT = 0xFD
213214
SELFDESTRUCT = 0xFF
214-
CREATE2 = 0xF5
215215

216216

217217
op_implementation: Dict[Ops, Callable] = {

0 commit comments

Comments
 (0)