Add plugeth injection comment

This commit is contained in:
Austin Roberts 2023-10-24 11:06:29 -05:00
parent cd9d109d65
commit 20a51847a8

View File

@ -72,7 +72,9 @@ func NewEVMInterpreter(evm *EVM) *EVMInterpreter {
table = &constantinopleInstructionSet table = &constantinopleInstructionSet
case evm.chainRules.IsByzantium: case evm.chainRules.IsByzantium:
table = &byzantiumInstructionSet table = &byzantiumInstructionSet
// begin PluGeth injection
case evm.chainRules.IsEIP160: case evm.chainRules.IsEIP160:
// end PluGeth injection
table = &spuriousDragonInstructionSet table = &spuriousDragonInstructionSet
case evm.chainRules.IsEIP150: case evm.chainRules.IsEIP150:
table = &tangerineWhistleInstructionSet table = &tangerineWhistleInstructionSet