Skip to content

core/vm/jump_table_export.go

Type MOD
Upstream Lines 80
Changed +4 -0

Export instruction set lookup for ETC

diff --git a/core/vm/jump_table_export.go b/core/vm/jump_table_export.go
index a4a99ea49..1dfc59a94 100644
--- a/core/vm/jump_table_export.go
+++ b/core/vm/jump_table_export.go
@@ -36,10 +36,14 @@ func LookupInstructionSet(rules params.Rules) (JumpTable, error) {
        return newPragueInstructionSet(), nil
    case rules.IsCancun:
        return newCancunInstructionSet(), nil
+   case rules.IsSpiral:
+       return newSpiralInstructionSet(), nil
    case rules.IsShanghai:
        return newShanghaiInstructionSet(), nil
    case rules.IsMerge:
        return newMergeInstructionSet(), nil
+   case rules.IsMystique:
+       return newMystiqueInstructionSet(), nil
    case rules.IsLondon:
        return newLondonInstructionSet(), nil
    case rules.IsBerlin:

← Back to Core & EVM