Skip to content

Commit

Permalink
change undecided timeout from 14 to 21 days (#2503)
Browse files Browse the repository at this point in the history
  • Loading branch information
noandrea authored Oct 31, 2023
1 parent f81d703 commit a9f5810
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runtime/moonbase/src/governance/referenda.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl pallet_conviction_voting::Config for Runtime {
parameter_types! {
pub const AlarmInterval: BlockNumber = 1;
pub const SubmissionDeposit: Balance = 10 * UNIT * SUPPLY_FACTOR;
pub const UndecidingTimeout: BlockNumber = 14 * DAYS;
pub const UndecidingTimeout: BlockNumber = 21 * DAYS;
}

pub type GeneralAdminOrRoot = EitherOf<EnsureRoot<AccountId>, origins::GeneralAdmin>;
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonbeam/src/governance/referenda.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl pallet_conviction_voting::Config for Runtime {
parameter_types! {
pub const AlarmInterval: BlockNumber = 1;
pub const SubmissionDeposit: Balance = 10 * GLMR * SUPPLY_FACTOR;
pub const UndecidingTimeout: BlockNumber = 14 * DAYS;
pub const UndecidingTimeout: BlockNumber = 21 * DAYS;
}

// Origin for general admin or root
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonriver/src/governance/referenda.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl pallet_conviction_voting::Config for Runtime {
parameter_types! {
pub const AlarmInterval: BlockNumber = 1;
pub const SubmissionDeposit: Balance = 10 * MOVR * SUPPLY_FACTOR;
pub const UndecidingTimeout: BlockNumber = 14 * DAYS;
pub const UndecidingTimeout: BlockNumber = 21 * DAYS;
}

// Origin for general admin or root
Expand Down

0 comments on commit a9f5810

Please sign in to comment.