diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-02 12:43:39 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 3197e1ec1dcf0c79c130c335c25f2d751e129de6 (patch) | |
tree | e4b6dca2577edbbd19150990c5acc13a982d1c13 /dex | |
parent | e6c828724c63cd97879c14436ffcd2824ace211a (diff) | |
download | dexon-3197e1ec1dcf0c79c130c335c25f2d751e129de6.tar dexon-3197e1ec1dcf0c79c130c335c25f2d751e129de6.tar.gz dexon-3197e1ec1dcf0c79c130c335c25f2d751e129de6.tar.bz2 dexon-3197e1ec1dcf0c79c130c335c25f2d751e129de6.tar.lz dexon-3197e1ec1dcf0c79c130c335c25f2d751e129de6.tar.xz dexon-3197e1ec1dcf0c79c130c335c25f2d751e129de6.tar.zst dexon-3197e1ec1dcf0c79c130c335c25f2d751e129de6.zip |
core: vm: governance: remove maxInterval
Diffstat (limited to 'dex')
-rw-r--r-- | dex/governance.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dex/governance.go b/dex/governance.go index 61dddf0e6..766920a62 100644 --- a/dex/governance.go +++ b/dex/governance.go @@ -100,7 +100,6 @@ func (d *DexconGovernance) Configuration(round uint64) *coreTypes.Config { DKGSetSize: c.DKGSetSize, RoundInterval: time.Duration(c.RoundInterval) * time.Millisecond, MinBlockInterval: time.Duration(c.MinBlockInterval) * time.Millisecond, - MaxBlockInterval: time.Duration(c.MaxBlockInterval) * time.Millisecond, } } |