Skip to content

Commit

Permalink
update democracy config (#2327)
Browse files Browse the repository at this point in the history
* update democracy config

* update
  • Loading branch information
xlc authored Aug 17, 2022
1 parent c4dd6b4 commit 4bd73a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions runtime/acala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -616,11 +616,11 @@ impl pallet_tips::Config for Runtime {
}

parameter_types! {
pub const LaunchPeriod: BlockNumber = 5 * DAYS;
pub const VotingPeriod: BlockNumber = 5 * DAYS;
pub const LaunchPeriod: BlockNumber = DAYS; // 5 * DAYS;
pub const VotingPeriod: BlockNumber = DAYS; // 5 * DAYS;
pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
pub MinimumDeposit: Balance = 200 * dollar(ACA);
pub const EnactmentPeriod: BlockNumber = 2 * DAYS;
pub MinimumDeposit: Balance = 1000 * dollar(ACA); // 200 * dollar(ACA);
pub const EnactmentPeriod: BlockNumber = 8 * HOURS; // 2 * DAYS;
pub const VoteLockingPeriod: BlockNumber = 14 * DAYS;
pub const CooloffPeriod: BlockNumber = 7 * DAYS;
}
Expand Down

0 comments on commit 4bd73a3

Please sign in to comment.