From 00a6968d0c64e46cc990262a668233e228f04283 Mon Sep 17 00:00:00 2001 From: Forostovec Date: Thu, 27 Nov 2025 18:32:13 +0200 Subject: [PATCH] fix: map ExecutionType.TXCREATE to Instruction.EOFCREATE --- src/Nethermind/Nethermind.Evm/ExecutionType.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Nethermind/Nethermind.Evm/ExecutionType.cs b/src/Nethermind/Nethermind.Evm/ExecutionType.cs index 91642266e02..27e7b3df982 100644 --- a/src/Nethermind/Nethermind.Evm/ExecutionType.cs +++ b/src/Nethermind/Nethermind.Evm/ExecutionType.cs @@ -42,6 +42,7 @@ public static Instruction ToInstruction(this ExecutionType executionType) => ExecutionType.CREATE => Instruction.CREATE, ExecutionType.CREATE2 => Instruction.CREATE2, ExecutionType.EOFCREATE => Instruction.EOFCREATE, + ExecutionType.TXCREATE => Instruction.EOFCREATE, ExecutionType.EOFCALL => Instruction.EXTCALL, ExecutionType.EOFSTATICCALL => Instruction.EXTSTATICCALL, ExecutionType.EOFDELEGATECALL => Instruction.EXTDELEGATECALL,