aboutsummaryrefslogtreecommitdiffstats
path: root/dex/backend.go
diff options
context:
space:
mode:
Diffstat (limited to 'dex/backend.go')
-rw-r--r--dex/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/backend.go b/dex/backend.go
index 2f6d8a8e5..7a7ad7f47 100644
--- a/dex/backend.go
+++ b/dex/backend.go
@@ -176,7 +176,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Dexon, error) {
privKey := coreEcdsa.NewPrivateKeyFromECDSA(config.PrivateKey)
dMoment := time.Date(2018, 10, 15, 6, 0, 0, 0, time.UTC)
dex.consensus = dexCore.NewConsensus(dMoment,
- dex.app, dex.governance, db, dex.network, privKey)
+ dex.app, dex.governance, db, dex.network, privKey, log.Root())
return dex, nil
}