Skip to content

Commit c1c5047

Browse files
author
Alan Sapede
authored
Reduce Submission Deposit and Timeout (#2121)
1 parent 4472034 commit c1c5047

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

runtime/moonbase/src/governance/referenda.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ impl pallet_conviction_voting::Config for Runtime {
4444

4545
parameter_types! {
4646
pub const AlarmInterval: BlockNumber = 1;
47-
pub const SubmissionDeposit: Balance = 100 * UNIT * SUPPLY_FACTOR;
48-
pub const UndecidingTimeout: BlockNumber = 28 * DAYS;
47+
pub const SubmissionDeposit: Balance = 10 * UNIT * SUPPLY_FACTOR;
48+
pub const UndecidingTimeout: BlockNumber = 14 * DAYS;
4949
}
5050

5151
pub type GeneralAdminOrRoot = EitherOf<EnsureRoot<AccountId>, origins::GeneralAdmin>;

runtime/moonriver/src/governance/referenda.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ impl pallet_conviction_voting::Config for Runtime {
4444

4545
parameter_types! {
4646
pub const AlarmInterval: BlockNumber = 1;
47-
pub const SubmissionDeposit: Balance = 100 * MOVR * SUPPLY_FACTOR;
48-
pub const UndecidingTimeout: BlockNumber = 28 * DAYS;
47+
pub const SubmissionDeposit: Balance = 10 * MOVR * SUPPLY_FACTOR;
48+
pub const UndecidingTimeout: BlockNumber = 14 * DAYS;
4949
}
5050

5151
// Origin for general admin or root

0 commit comments

Comments
 (0)