aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-12-13 10:45:29 +0800
committerWei-Ning Huang <w@dexon.org>2018-12-19 20:54:27 +0800
commitfe76d9573659cd5631859511c675126495fb5541 (patch)
tree3c347e13bfcbcece0d3061dac6caaabc3ec504f3 /cmd
parent62561c946386ebd334db0027888ab5c07de3ffe8 (diff)
downloaddexon-fe76d9573659cd5631859511c675126495fb5541.tar
dexon-fe76d9573659cd5631859511c675126495fb5541.tar.gz
dexon-fe76d9573659cd5631859511c675126495fb5541.tar.bz2
dexon-fe76d9573659cd5631859511c675126495fb5541.tar.lz
dexon-fe76d9573659cd5631859511c675126495fb5541.tar.xz
dexon-fe76d9573659cd5631859511c675126495fb5541.tar.zst
dexon-fe76d9573659cd5631859511c675126495fb5541.zip
dex, cmd: Add DMoment to command line (#87)
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gdex/main.go1
-rw-r--r--cmd/utils/flags.go14
2 files changed, 15 insertions, 0 deletions
diff --git a/cmd/gdex/main.go b/cmd/gdex/main.go
index c4a7956e4..28e918f84 100644
--- a/cmd/gdex/main.go
+++ b/cmd/gdex/main.go
@@ -98,6 +98,7 @@ var (
utils.MaxPeersFlag,
utils.MaxPendingPeersFlag,
utils.BlockProposerEnabledFlag,
+ utils.ConsensusDMomentFlag,
utils.MiningEnabledFlag,
utils.MinerThreadsFlag,
utils.MinerLegacyThreadsFlag,
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 7f6b41f6f..f262d0786 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -325,6 +325,10 @@ var (
Name: "bp",
Usage: "Enable block proposer mode (node set)",
}
+ ConsensusDMomentFlag = cli.Uint64Flag{
+ Name: "dmoment",
+ Usage: "Set the DMoment of DEXON Consensus (unix timestamp)",
+ }
// Miner settings
MiningEnabledFlag = cli.BoolFlag{
Name: "mine",
@@ -1260,6 +1264,16 @@ func SetDexConfig(ctx *cli.Context, stack *node.Node, cfg *dex.Config) {
if gen := ctx.GlobalInt(TrieCacheGenFlag.Name); gen > 0 {
state.MaxTrieCacheGen = uint16(gen)
}
+ if ctx.GlobalIsSet(ConsensusDMomentFlag.Name) {
+ cfg.DMoment = int64(ctx.GlobalUint64(ConsensusDMomentFlag.Name))
+ } else {
+ // TODO(jimmy): default DMoment should be set based on networkId.
+ now := time.Now()
+ cfg.DMoment = time.Date(
+ now.Year(), now.Month(), now.Day(),
+ now.Hour(), now.Minute(), (now.Second()/5+1)*5,
+ 0, now.Location()).Unix()
+ }
}
// SetDashboardConfig applies dashboard related command line flags to the config.