diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index 240f3734a5..91f1be669a 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -81,7 +81,8 @@ func validate(jt JumpTable) JumpTable { func newShanghaiInstructionSet() JumpTable { instructionSet := newMergeInstructionSet() - enable3860(&instructionSet) + enable3855(&instructionSet) // PUSH0 instruction + enable3860(&instructionSet) // Limit and meter initcode return validate(instructionSet) }