Skip to content

Commit

Permalink
Sort prague instructions (#942)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWilsn committed Jun 18, 2024
1 parent cd5207e commit 22da1ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ethereum/prague/vm/instructions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,14 +204,14 @@ class Ops(enum.Enum):

# System Operations
CREATE = 0xF0
RETURN = 0xF3
CALL = 0xF1
CALLCODE = 0xF2
RETURN = 0xF3
DELEGATECALL = 0xF4
CREATE2 = 0xF5
STATICCALL = 0xFA
REVERT = 0xFD
SELFDESTRUCT = 0xFF
CREATE2 = 0xF5


op_implementation: Dict[Ops, Callable] = {
Expand Down

0 comments on commit 22da1ed

Please sign in to comment.