Skip to content

Commit

Permalink
core: fix compilation error (ethereum#30394)
Browse files Browse the repository at this point in the history
un-borks a compilation error from a recent merge to master
  • Loading branch information
holiman committed Sep 4, 2024
1 parent b0b67be commit fdb8499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/blockchain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit fdb8499

Please sign in to comment.