From ac0edb795ef4678dd00545041aa164193a6f15d8 Mon Sep 17 00:00:00 2001 From: MariusVanDerWijden Date: Mon, 23 Feb 2026 15:18:14 +0100 Subject: [PATCH] core: fix test --- core/bintrie_witness_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bintrie_witness_test.go b/core/bintrie_witness_test.go index 750153c1ce..c2db82fcad 100644 --- a/core/bintrie_witness_test.go +++ b/core/bintrie_witness_test.go @@ -199,7 +199,7 @@ func TestProcessParentBlockHash(t *testing.T) { if isVerkle { chainConfig = testVerkleChainConfig } - vmContext := NewEVMBlockContext(header, nil, new(common.Address)) + vmContext := NewEVMBlockContext(header, &BlockChain{chainConfig: chainConfig}, new(common.Address)) evm := vm.NewEVM(vmContext, statedb, chainConfig, vm.Config{}) ProcessParentBlockHash(header.ParentHash, evm) }