From 4d4f6bc9c92a776e3eb5c22c88dbfec1b0ecdd8b Mon Sep 17 00:00:00 2001 From: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Date: Wed, 23 Mar 2022 10:47:58 +0000 Subject: [PATCH] lower kusama staking limits (#5000) --- polkadot/runtime/kusama/src/lib.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 494d5590d94..437b705e424 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -405,13 +405,11 @@ parameter_types! { // 1 hour session, 15 minutes unsigned phase, 8 offchain executions. pub OffchainRepeat: BlockNumber = UnsignedPhase::get() / 8; - - /// We take the top 22_500 nominators as electing voters.. - pub const MaxElectingVoters: u32 = 22_500; + /// We take the top 12_500 nominators as electing voters.. + pub const MaxElectingVoters: u32 = 12_500; /// ... and all of the validators as electable targets. Whilst this is the case, we cannot and /// shall not increase the size of the validator intentions. pub const MaxElectableTargets: u16 = u16::MAX; - } frame_election_provider_support::generate_solution_type!( -- GitLab