core: fix compilation error (#30394)

un-borks a compilation error from a recent merge to master
This commit is contained in:
Martin HS 2024-09-04 15:13:20 +02:00 committed by GitHub
parent b0b67be0a2
commit fdb84993d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4277,7 +4277,7 @@ func TestEIP6110(t *testing.T) {
b.AddTx(tx)
}
})
chain, err := NewBlockChain(rawdb.NewMemoryDatabase(), nil, gspec, nil, engine, vm.Config{Tracer: logger.NewMarkdownLogger(&logger.Config{DisableStack: true}, os.Stderr).Hooks()}, nil, nil)
chain, err := NewBlockChain(rawdb.NewMemoryDatabase(), nil, gspec, nil, engine, vm.Config{Tracer: logger.NewMarkdownLogger(&logger.Config{DisableStack: true}, os.Stderr).Hooks()}, nil)
if err != nil {
t.Fatalf("failed to create tester chain: %v", err)
}