From 66c4936e21dc07eecbc8b3fe2dbfe6647b657085 Mon Sep 17 00:00:00 2001 From: RRTTI Date: Sat, 27 Mar 2021 17:37:30 +0100 Subject: [PATCH] Increase rotation period (#2688) * Cancel treasury burn and increase rotation period What this PR changes: - Kusama treasury burn to be transferred to the Saociety pot: cancelled temporarily - Increase the rotation period for candidates to show PoI FROM 3,3 days to 7 days. * Update runtime/kusama/src/lib.rs * Update lib.rs Co-authored-by: Gavin Wood --- polkadot/runtime/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 70a82c0077..90cdeab697 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -794,7 +794,7 @@ parameter_types! { pub const CandidateDeposit: Balance = 10 * DOLLARS; pub const WrongSideDeduction: Balance = 2 * DOLLARS; pub const MaxStrikes: u32 = 10; - pub const RotationPeriod: BlockNumber = 80 * HOURS; + pub const RotationPeriod: BlockNumber = 7 * DAYS; pub const PeriodSpend: Balance = 500 * DOLLARS; pub const MaxLockDuration: BlockNumber = 36 * 30 * DAYS; pub const ChallengePeriod: BlockNumber = 7 * DAYS;