diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 28449d52ae1a..b54c35d78d0c 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -345,7 +345,7 @@ parameter_types! { // fallback: run election on-chain. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = - pallet_election_provider_multi_phase::FallbackStrategy::OnChain; + pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pub SolutionImprovementThreshold: Perbill = Perbill::from_rational(5u32, 10_000); // miner configs diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 9aaea721c41d..c10208d22d01 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -326,7 +326,7 @@ parameter_types! { // fallback: run election on-chain. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = - pallet_election_provider_multi_phase::FallbackStrategy::OnChain; + pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pub SolutionImprovementThreshold: Perbill = Perbill::from_rational(5u32, 10_000); // miner configs diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 61e795b27c62..1575676185fc 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -335,7 +335,7 @@ parameter_types! { // fallback: run election on-chain. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = - pallet_election_provider_multi_phase::FallbackStrategy::OnChain; + pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pub SolutionImprovementThreshold: Perbill = Perbill::from_rational(5u32, 10_000);