Skip to content

Commit 2767388

Browse files
authored
increase MaxProposalWeight (#2823)
1 parent f79aa2b commit 2767388

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: runtime/acala/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ parameter_types! {
412412
pub const GeneralCouncilMotionDuration: BlockNumber = 3 * DAYS;
413413
pub const CouncilDefaultMaxProposals: u32 = 20;
414414
pub const CouncilDefaultMaxMembers: u32 = 30;
415-
pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block;
415+
pub MaxProposalWeight: Weight = Perbill::from_percent(60) * RuntimeBlockWeights::get().max_block;
416416
}
417417

418418
impl pallet_collective::Config<GeneralCouncilInstance> for Runtime {

Diff for: runtime/karura/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ parameter_types! {
420420
pub const GeneralCouncilMotionDuration: BlockNumber = 3 * DAYS;
421421
pub const CouncilDefaultMaxProposals: u32 = 20;
422422
pub const CouncilDefaultMaxMembers: u32 = 30;
423-
pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block;
423+
pub MaxProposalWeight: Weight = Perbill::from_percent(60) * RuntimeBlockWeights::get().max_block;
424424
}
425425

426426
impl pallet_collective::Config<GeneralCouncilInstance> for Runtime {

Diff for: runtime/mandala/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ parameter_types! {
379379
pub const GeneralCouncilMotionDuration: BlockNumber = 7 * DAYS;
380380
pub const CouncilDefaultMaxProposals: u32 = 100;
381381
pub const CouncilDefaultMaxMembers: u32 = 100;
382-
pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block;
382+
pub MaxProposalWeight: Weight = Perbill::from_percent(60) * RuntimeBlockWeights::get().max_block;
383383
}
384384

385385
impl pallet_collective::Config<GeneralCouncilInstance> for Runtime {

0 commit comments

Comments
 (0)