From ab7c93a917923e757c83f9db3f4251643a78374e Mon Sep 17 00:00:00 2001 From: lightclient Date: Thu, 30 Jan 2025 12:05:12 -0700 Subject: [PATCH] core: harmonize use of cm.config --- core/chain_makers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/chain_makers.go b/core/chain_makers.go index 86f68d07c2..0ff5a33d13 100644 --- a/core/chain_makers.go +++ b/core/chain_makers.go @@ -493,7 +493,7 @@ func GenerateVerkleChain(config *params.ChainConfig, parent *types.Block, engine // preState := statedb.Copy() // EIP-2935 / 7709 - blockContext := NewEVMBlockContext(b.header, cm, cm.Config(), &b.header.Coinbase) + blockContext := NewEVMBlockContext(b.header, cm, cm.config, &b.header.Coinbase) blockContext.Random = &common.Hash{} // enable post-merge instruction set evm := vm.NewEVM(blockContext, statedb, cm.config, vm.Config{}) ProcessParentBlockHash(b.header.ParentHash, evm)