Skip to content

Commit

Permalink
more time
Browse files Browse the repository at this point in the history
  • Loading branch information
asiniscalchi committed Sep 5, 2024
1 parent 566dbd1 commit 4c7dcc3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions runtime/laos/src/configs/democracy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ use parachains_common::{DAYS, HOURS, MINUTES};
use polkadot_runtime_common::prod_or_fast;

parameter_types! {
pub LaunchPeriod: BlockNumber = prod_or_fast!(7 * DAYS, MINUTES, "LAUNCH_PERIOD");
pub VotingPeriod: BlockNumber = prod_or_fast!(7 * DAYS, MINUTES, "VOTING_PERIOD");
pub FastTrackVotingPeriod: BlockNumber = prod_or_fast!(3 * HOURS, MINUTES, "FAST_TRACK_VOTING_PERIOD");
pub EnactmentPeriod: BlockNumber = prod_or_fast!(8 * DAYS, MINUTES, "ENACTMENT_PERIOD");
pub CooloffPeriod: BlockNumber = prod_or_fast!(7 * DAYS, MINUTES, "COOLOFF_PERIOD");
pub LaunchPeriod: BlockNumber = prod_or_fast!(7 * DAYS, 7 * MINUTES, "LAUNCH_PERIOD");
pub VotingPeriod: BlockNumber = prod_or_fast!(7 * DAYS, 7 * MINUTES, "VOTING_PERIOD");
pub FastTrackVotingPeriod: BlockNumber = prod_or_fast!(3 * HOURS, 3 * MINUTES, "FAST_TRACK_VOTING_PERIOD");
pub EnactmentPeriod: BlockNumber = prod_or_fast!(8 * DAYS, 8 * MINUTES, "ENACTMENT_PERIOD");
pub CooloffPeriod: BlockNumber = prod_or_fast!(7 * DAYS, 7 * MINUTES, "COOLOFF_PERIOD");
pub const MaxProposals: u32 = 100;
pub const InstantAllowed: bool = true;
pub const MinimumDeposit: Balance = 1000 * UNIT;
Expand Down

0 comments on commit 4c7dcc3

Please sign in to comment.