From 22da1ed07ec5dd60c86573b9fdcc69d6eed00639 Mon Sep 17 00:00:00 2001 From: Sam Wilson Date: Mon, 17 Jun 2024 10:41:44 -0400 Subject: [PATCH] Sort prague instructions (#942) --- src/ethereum/prague/vm/instructions/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ethereum/prague/vm/instructions/__init__.py b/src/ethereum/prague/vm/instructions/__init__.py index e85592574d..b220581c72 100644 --- a/src/ethereum/prague/vm/instructions/__init__.py +++ b/src/ethereum/prague/vm/instructions/__init__.py @@ -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] = {