From e42a4cb94493611c7b109f3e7a48c7a11c593e46 Mon Sep 17 00:00:00 2001 From: Austin Roberts Date: Tue, 24 Oct 2023 09:29:09 -0500 Subject: [PATCH] Use EIP160 case instead of EIP158 --- core/vm/jump_table_export.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/vm/jump_table_export.go b/core/vm/jump_table_export.go index 5f4a71a6e..78b30c577 100644 --- a/core/vm/jump_table_export.go +++ b/core/vm/jump_table_export.go @@ -49,7 +49,6 @@ func LookupInstructionSet(rules params.Rules) (JumpTable, error) { // Begin plugeth injection case rules.IsEIP160: // End plugeth injection - case rules.IsEIP158: return newSpuriousDragonInstructionSet(), nil case rules.IsEIP150: return newTangerineWhistleInstructionSet(), nil