aboutsummaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-22 19:53:24 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:16 +0800
commite8326992de2ed9b961570b7379b0c091f1f9e051 (patch)
tree419073b0b59f3b39f7dfc67d0d4d50877378ef57 /dex
parent2a38e14fa33bebd002451561f3fc618cc8e4fb61 (diff)
downloadgo-tangerine-e8326992de2ed9b961570b7379b0c091f1f9e051.tar
go-tangerine-e8326992de2ed9b961570b7379b0c091f1f9e051.tar.gz
go-tangerine-e8326992de2ed9b961570b7379b0c091f1f9e051.tar.bz2
go-tangerine-e8326992de2ed9b961570b7379b0c091f1f9e051.tar.lz
go-tangerine-e8326992de2ed9b961570b7379b0c091f1f9e051.tar.xz
go-tangerine-e8326992de2ed9b961570b7379b0c091f1f9e051.tar.zst
go-tangerine-e8326992de2ed9b961570b7379b0c091f1f9e051.zip
dex: fix round switching and initialize dMoment correctly
Diffstat (limited to 'dex')
-rw-r--r--dex/backend.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/dex/backend.go b/dex/backend.go
index 9c931ee2c..2ad7c16be 100644
--- a/dex/backend.go
+++ b/dex/backend.go
@@ -174,7 +174,14 @@ func New(ctx *node.ServiceContext, config *Config) (*Dexon, error) {
dex.network = NewDexconNetwork(pm)
privKey := coreEcdsa.NewPrivateKeyFromECDSA(config.PrivateKey)
- dMoment := time.Date(2018, 10, 15, 6, 0, 0, 0, time.UTC)
+
+ // TODO(w): set this correctly in config.
+ now := time.Now()
+ dMoment := time.Date(
+ now.Year(), now.Month(), now.Day(),
+ now.Hour(), now.Minute(), (now.Second()/5+1)*5,
+ 0, now.Location())
+
dex.consensus = dexCore.NewConsensus(dMoment,
dex.app, dex.governance, db, dex.network, privKey, log.Root())
return dex, nil