diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-02 12:43:39 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 1f96be77a55876efd22d1e2f7887941ede7b70c0 (patch) | |
tree | 78de5c93e2e653c35817ed35eff193a2e879ad97 /dex | |
parent | ecd02bb80782799065ecc66eea3129317f8ed513 (diff) | |
download | dexon-1f96be77a55876efd22d1e2f7887941ede7b70c0.tar.gz dexon-1f96be77a55876efd22d1e2f7887941ede7b70c0.tar.zst dexon-1f96be77a55876efd22d1e2f7887941ede7b70c0.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, } } |