update quorum to 10% (#1002)

This commit is contained in:
Denali Marsh 2021-08-18 15:30:45 +02:00 committed by GitHub
parent 0714d6120e
commit 346501aa58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -261,8 +261,8 @@ func Committee(genesisState v0_14committee.GenesisState) v0_15committee.GenesisS
// ---------------------------- Initialize hard governance committee ----------------------------
hardGovDuration := time.Duration(time.Hour * 24 * 7)
hardGovThreshold := sdk.MustNewDecFromStr("0.5")
hardGovQuorum := sdk.MustNewDecFromStr("0.33")
hardGovThreshold := sdk.MustNewDecFromStr("0.5") // 50%
hardGovQuorum := sdk.MustNewDecFromStr("0.1") // 10%
hardGovCom := v0_15committee.NewTokenCommittee(3, "Hard Governance Committee", stabilityComMembers,
[]v0_15committee.Permission{}, hardGovThreshold, hardGovDuration, v0_15committee.Deadline,
@ -301,8 +301,8 @@ func Committee(genesisState v0_14committee.GenesisState) v0_15committee.GenesisS
// ---------------------------- Initialize swp governance committee ----------------------------
swpGovDuration := time.Duration(time.Hour * 24 * 7)
swpGovThreshold := sdk.MustNewDecFromStr("0.5")
swpGovQuorum := sdk.MustNewDecFromStr("0.33")
swpGovThreshold := sdk.MustNewDecFromStr("0.5") // 50%
swpGovQuorum := sdk.MustNewDecFromStr("0.1") // 10%
swpGovCom := v0_15committee.NewTokenCommittee(4, "Swp Governance Committee", stabilityComMembers,
[]v0_15committee.Permission{}, swpGovThreshold, swpGovDuration, v0_15committee.Deadline,