From e57d85b108e26f3d40cbf5dc9f0c58039364e379 Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Mon, 12 May 2025 11:11:16 +0530 Subject: [PATCH] core: fixed TestGeneratePOSChain --- core/chain_makers_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/chain_makers_test.go b/core/chain_makers_test.go index 16a7348818..e500d940d2 100644 --- a/core/chain_makers_test.go +++ b/core/chain_makers_test.go @@ -120,7 +120,7 @@ func TestGeneratePOSChain(t *testing.T) { }) // Import the chain. This runs all block validation rules. - blockchain, _ := NewBlockChain(db, nil, gspec, nil, ethash.NewFaker(), vm.Config{}, nil, nil, nil) + blockchain, _ := NewBlockChain(db, nil, gspec, nil, beacon.NewFaker(), vm.Config{}, nil, nil, nil) defer blockchain.Stop() if i, err := blockchain.InsertChain(genchain); err != nil {