diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-10-15 15:50:11 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:53 +0800 |
commit | d9e305d9883b052c12fcb27be34447bbd85a934f (patch) | |
tree | f366ae06a39934d1b238f2ccae7f7ecf3bae969d | |
parent | 639724a26a4f0ca9788f8328b946a1641ab57c1c (diff) | |
download | dexon-d9e305d9883b052c12fcb27be34447bbd85a934f.tar dexon-d9e305d9883b052c12fcb27be34447bbd85a934f.tar.gz dexon-d9e305d9883b052c12fcb27be34447bbd85a934f.tar.bz2 dexon-d9e305d9883b052c12fcb27be34447bbd85a934f.tar.lz dexon-d9e305d9883b052c12fcb27be34447bbd85a934f.tar.xz dexon-d9e305d9883b052c12fcb27be34447bbd85a934f.tar.zst dexon-d9e305d9883b052c12fcb27be34447bbd85a934f.zip |
core: vm: modify dkg threshold
-rw-r--r-- | core/vm/governance.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/governance.go b/core/vm/governance.go index 3583e0cc1..c9ab74bd7 100644 --- a/core/vm/governance.go +++ b/core/vm/governance.go @@ -1540,7 +1540,7 @@ func (g *GovernanceContract) proposeCRS(signedCRS []byte) ([]byte, error) { dkgComplaints = append(dkgComplaints, x) } - threshold := int(g.state.DKGSetSize().Uint64() / 3) + threshold := int(g.state.DKGSetSize().Uint64() / 3 + 1) dkgGPK, err := core.NewDKGGroupPublicKey( round.Uint64(), dkgMasterPKs, dkgComplaints, threshold) |