core/vm: remove duplicated EIP initialization

This commit is contained in:
Gary Rong 2024-05-09 15:43:38 +08:00
parent 3800a708e1
commit 1a661dcabf

View file

@ -83,7 +83,6 @@ func validate(jt JumpTable) JumpTable {
func newVerkleInstructionSet() JumpTable {
instructionSet := newCancunInstructionSet()
enable6780(&instructionSet)
enable4762(&instructionSet)
return validate(instructionSet)
}