diff --git a/core/vm/evm.go b/core/vm/evm.go index ee749b0cdc62..cc4b207e4e5d 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -128,9 +128,8 @@ func NewEVM(blockCtx BlockContext, txCtx TxContext, statedb StateDB, chainConfig chainRules: chainConfig.Rules(blockCtx.BlockNumber, blockCtx.Random != nil, blockCtx.Time), } - evm.precompiles = activePrecompiledContracts(evm.chainRules) - //[rollup-geth] + evm.precompiles = ActivePrecompiledContracts(evm.chainRules) evm.precompiles.ActivateRollupPrecompiledContracts(evm.chainRules, generateRollupPrecompiledContractsOverrides(evm)) evm.interpreter = NewEVMInterpreter(evm)