diff options
Diffstat (limited to 'les')
-rw-r--r-- | les/helper_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/les/helper_test.go b/les/helper_test.go index 206ee2d92..29496d6af 100644 --- a/les/helper_test.go +++ b/les/helper_test.go @@ -164,7 +164,7 @@ func newTestProtocolManager(lightSync bool, blocks int, generator func(int, *cor if lightSync { chain, _ = light.NewLightChain(odr, gspec.Config, engine) } else { - blockchain, _ := core.NewBlockChain(db, nil, gspec.Config, engine, vm.Config{}) + blockchain, _ := core.NewBlockChain(db, nil, gspec.Config, engine, vm.Config{}, nil) gchain, _ := core.GenerateChain(gspec.Config, genesis, ethash.NewFaker(), db, blocks, generator) if _, err := blockchain.InsertChain(gchain); err != nil { panic(err) |