From 72ff9d138ecf723bc92a67197fcddb0fb5d521f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rard=20Dethier?= Date: Fri, 21 Jun 2024 15:21:30 +0200 Subject: [PATCH] feat: reduce min collators. logion-network/logion-internal#1290 --- runtime/src/configs/mod.rs | 2 +- runtime/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/configs/mod.rs b/runtime/src/configs/mod.rs index 2eb584a..2ba4653 100644 --- a/runtime/src/configs/mod.rs +++ b/runtime/src/configs/mod.rs @@ -297,7 +297,7 @@ impl pallet_collator_selection::Config for Runtime { type UpdateOrigin = CollatorSelectionUpdateOrigin; type PotId = PotId; type MaxCandidates = MaxCandidates; - type MinEligibleCollators = ConstU32<4>; + type MinEligibleCollators = ConstU32<3>; type MaxInvulnerables = MaxInvulnerables; // should be a multiple of session or things will get inconsistent type KickThreshold = Period; diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 56eb44a..0bde13c 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -157,7 +157,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("logion"), impl_name: create_runtime_str!("logion"), authoring_version: 1, - spec_version: 000_004_000, + spec_version: 000_004_001, impl_version: 0, apis: apis::RUNTIME_API_VERSIONS, transaction_version: 1,