Fix interpreter instruction set selection

This commit is contained in:
Austin Roberts
2023-10-24 10:58:21 -05:00
parent e42a4cb944
commit cd9d109d65
+1 -1
View File
@@ -72,7 +72,7 @@ func NewEVMInterpreter(evm *EVM) *EVMInterpreter {
table = &constantinopleInstructionSet
case evm.chainRules.IsByzantium:
table = &byzantiumInstructionSet
case evm.chainRules.IsEIP158:
case evm.chainRules.IsEIP160:
table = &spuriousDragonInstructionSet
case evm.chainRules.IsEIP150:
table = &tangerineWhistleInstructionSet