Skip to content

core/vm/jump_table_export.go — Version Comparison

v1.16.8 v1.17.3
Branch etc/v1.16.8-full-node etc/v1.17.3-full-node
Delta +2 -0 +4 -0
ETC delta on v1.16.8 (+2 -0)
diff --git a/core/vm/jump_table_export.go b/core/vm/jump_table_export.go
index 89a2ebf6f..7b6701932 100644
--- a/core/vm/jump_table_export.go
+++ b/core/vm/jump_table_export.go
@@ -34,6 +34,8 @@ 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:
ETC delta on v1.17.3 (+4 -0)
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 Version Comparison