Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: reduce democracy periods on kintsugi & testnet #730

Merged
merged 1 commit into from Oct 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions parachain/runtime/kintsugi/src/lib.rs
Expand Up @@ -478,13 +478,13 @@ type EnsureRootOrAllTechnicalCommittee = EitherOfDiverse<

parameter_types! {
pub const LaunchPeriod: BlockNumber = 7 * DAYS;
pub const VotingPeriod: BlockNumber = 7 * DAYS;
pub const VotingPeriod: BlockNumber = 2 * DAYS;
pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
// Require 5 vKINT to make a proposal. Given the crowdloan airdrop, this qualifies about 3500
// accounts to make a governance proposal. Only 2300 can do two proposals,
// and 700 accounts can do ten or more proposals.
pub MinimumDeposit: Balance = 5 * UNITS;
pub const EnactmentPeriod: BlockNumber = DAYS;
pub const EnactmentPeriod: BlockNumber = 6 * HOURS;
pub PreimageByteDeposit: Balance = 10 * MILLICENTS;
pub const MaxVotes: u32 = 100;
pub const MaxProposals: u32 = 100;
Expand Down
4 changes: 2 additions & 2 deletions parachain/runtime/testnet-kintsugi/src/lib.rs
Expand Up @@ -448,13 +448,13 @@ type EnsureRootOrAllTechnicalCommittee = EitherOfDiverse<

parameter_types! {
pub const LaunchPeriod: BlockNumber = 7 * DAYS;
pub const VotingPeriod: BlockNumber = 7 * DAYS;
pub const VotingPeriod: BlockNumber = 2 * DAYS;
pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
// Require 5 vKINT to make a proposal. Given the crowdloan airdrop, this qualifies about 3500
// accounts to make a governance proposal. Only 2300 can do two proposals,
// and 700 accounts can do ten or more proposals.
pub MinimumDeposit: Balance = 5 * UNITS;
pub const EnactmentPeriod: BlockNumber = DAYS;
pub const EnactmentPeriod: BlockNumber = 6 * HOURS;
pub PreimageByteDeposit: Balance = 10 * MILLICENTS;
pub const MaxVotes: u32 = 100;
pub const MaxProposals: u32 = 100;
Expand Down