From a36d28162a6b6e085d10d15f57d748938ea9b79c Mon Sep 17 00:00:00 2001 From: dylanverstraete Date: Tue, 14 Jun 2022 11:42:41 +0200 Subject: [PATCH] chore: lower dao motionduration to 2 hours #333 --- substrate-node/runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate-node/runtime/src/lib.rs b/substrate-node/runtime/src/lib.rs index 6ceee0f9c..736abe92e 100644 --- a/substrate-node/runtime/src/lib.rs +++ b/substrate-node/runtime/src/lib.rs @@ -512,7 +512,7 @@ impl pallet_scheduler::Config for Runtime { } parameter_types! { - pub const CouncilMotionDuration: BlockNumber = 7 * DAYS; + pub const CouncilMotionDuration: BlockNumber = 2 * HOURS; pub const CouncilMaxProposals: u32 = 100; pub const CouncilMaxMembers: u32 = 100; }