Commit a9028f11 authored by protolambda's avatar protolambda

default idleDerivation to false, to not sequence new blocks before syncing

parent 07878205
...@@ -53,7 +53,7 @@ func NewState(driverCfg *Config, log log.Logger, snapshotLog log.Logger, config ...@@ -53,7 +53,7 @@ func NewState(driverCfg *Config, log log.Logger, snapshotLog log.Logger, config
output outputInterface, derivationPipeline DerivationPipeline, network Network) *state { output outputInterface, derivationPipeline DerivationPipeline, network Network) *state {
return &state{ return &state{
derivation: derivationPipeline, derivation: derivationPipeline,
idleDerivation: true, idleDerivation: false,
Config: config, Config: config,
DriverConfig: driverCfg, DriverConfig: driverCfg,
done: make(chan struct{}), done: make(chan struct{}),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment