aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-12-13 10:45:29 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:19 +0800
commit7a587feaa582fcecdcc0388f720e54614cb6b8f4 (patch)
treed7669f53ccbb1533a6ddd7d87852f27cf4f71de6 /cmd/utils
parentff5d1d96642ddbe6d30c02f477e1c2ff5bd85909 (diff)
downloadgo-tangerine-7a587feaa582fcecdcc0388f720e54614cb6b8f4.tar
go-tangerine-7a587feaa582fcecdcc0388f720e54614cb6b8f4.tar.gz
go-tangerine-7a587feaa582fcecdcc0388f720e54614cb6b8f4.tar.bz2
go-tangerine-7a587feaa582fcecdcc0388f720e54614cb6b8f4.tar.lz
go-tangerine-7a587feaa582fcecdcc0388f720e54614cb6b8f4.tar.xz
go-tangerine-7a587feaa582fcecdcc0388f720e54614cb6b8f4.tar.zst
go-tangerine-7a587feaa582fcecdcc0388f720e54614cb6b8f4.zip
dex, cmd: Add DMoment to command line (#87)
Diffstat (limited to 'cmd/utils')
-rw-r--r--cmd/utils/flags.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 03b0841b0..971ccd349 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -326,6 +326,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",
@@ -1268,6 +1272,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.