From 4bb00bb8299904f8e3e2ada804a65e1d2b062c43 Mon Sep 17 00:00:00 2001 From: wangjj9219 <183318287@qq.com> Date: Wed, 23 Oct 2024 12:42:14 +0800 Subject: [PATCH] increase MaxProposalWeight --- runtime/acala/src/lib.rs | 2 +- runtime/karura/src/lib.rs | 2 +- runtime/mandala/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/acala/src/lib.rs b/runtime/acala/src/lib.rs index dd9aaf10f..0dc11d856 100644 --- a/runtime/acala/src/lib.rs +++ b/runtime/acala/src/lib.rs @@ -412,7 +412,7 @@ parameter_types! { pub const GeneralCouncilMotionDuration: BlockNumber = 3 * DAYS; pub const CouncilDefaultMaxProposals: u32 = 20; pub const CouncilDefaultMaxMembers: u32 = 30; - pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; + pub MaxProposalWeight: Weight = Perbill::from_percent(60) * RuntimeBlockWeights::get().max_block; } impl pallet_collective::Config for Runtime { diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs index 427001785..a62159dcb 100644 --- a/runtime/karura/src/lib.rs +++ b/runtime/karura/src/lib.rs @@ -420,7 +420,7 @@ parameter_types! { pub const GeneralCouncilMotionDuration: BlockNumber = 3 * DAYS; pub const CouncilDefaultMaxProposals: u32 = 20; pub const CouncilDefaultMaxMembers: u32 = 30; - pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; + pub MaxProposalWeight: Weight = Perbill::from_percent(60) * RuntimeBlockWeights::get().max_block; } impl pallet_collective::Config for Runtime { diff --git a/runtime/mandala/src/lib.rs b/runtime/mandala/src/lib.rs index 10595e4de..ac5527149 100644 --- a/runtime/mandala/src/lib.rs +++ b/runtime/mandala/src/lib.rs @@ -379,7 +379,7 @@ parameter_types! { pub const GeneralCouncilMotionDuration: BlockNumber = 7 * DAYS; pub const CouncilDefaultMaxProposals: u32 = 100; pub const CouncilDefaultMaxMembers: u32 = 100; - pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; + pub MaxProposalWeight: Weight = Perbill::from_percent(60) * RuntimeBlockWeights::get().max_block; } impl pallet_collective::Config for Runtime {