diff options
Diffstat (limited to 'les')
-rw-r--r-- | les/backend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/les/backend.go b/les/backend.go index 333df920e..7180b81d7 100644 --- a/les/backend.go +++ b/les/backend.go @@ -98,7 +98,7 @@ func New(ctx *node.ServiceContext, config *eth.Config) (*LightEthereum, error) { peers: peers, reqDist: newRequestDistributor(peers, quitSync), accountManager: ctx.AccountManager, - engine: eth.CreateConsensusEngine(ctx, config, chainConfig, chainDb), + engine: eth.CreateConsensusEngine(ctx, &config.Ethash, chainConfig, chainDb), shutdownChan: make(chan bool), networkId: config.NetworkId, bloomRequests: make(chan chan *bloombits.Retrieval), |