diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-02 12:43:39 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:17 +0800 |
commit | b2e87ed696aed980902308e9210fa33bf9143657 (patch) | |
tree | 1d757233e4cfe74df87e031cef55f8808ee662ec /dex | |
parent | fa4a62c777f38a5f03176405a53c3926fcb90a31 (diff) | |
download | go-tangerine-b2e87ed696aed980902308e9210fa33bf9143657.tar go-tangerine-b2e87ed696aed980902308e9210fa33bf9143657.tar.gz go-tangerine-b2e87ed696aed980902308e9210fa33bf9143657.tar.bz2 go-tangerine-b2e87ed696aed980902308e9210fa33bf9143657.tar.lz go-tangerine-b2e87ed696aed980902308e9210fa33bf9143657.tar.xz go-tangerine-b2e87ed696aed980902308e9210fa33bf9143657.tar.zst go-tangerine-b2e87ed696aed980902308e9210fa33bf9143657.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, } } |