From 1a661dcabfc0620fea498e7d25d954e88010a93f Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Thu, 9 May 2024 15:43:38 +0800 Subject: [PATCH] core/vm: remove duplicated EIP initialization --- core/vm/jump_table.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index e0e86418ad..5624f47ba7 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -83,7 +83,6 @@ func validate(jt JumpTable) JumpTable { func newVerkleInstructionSet() JumpTable { instructionSet := newCancunInstructionSet() - enable6780(&instructionSet) enable4762(&instructionSet) return validate(instructionSet) }