From 071cd2c4c6bbd9199e8df93541a12daeaae89335 Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Tue, 13 Aug 2024 09:46:11 +1200 Subject: [PATCH] update collator kick threshold --- runtime/acala/src/lib.rs | 2 +- runtime/karura/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/acala/src/lib.rs b/runtime/acala/src/lib.rs index 532dbda5c..72663d150 100644 --- a/runtime/acala/src/lib.rs +++ b/runtime/acala/src/lib.rs @@ -317,7 +317,7 @@ impl pallet_session::Config for Runtime { } parameter_types! { - pub const CollatorKickThreshold: Permill = Permill::from_percent(60); + pub const CollatorKickThreshold: Permill = Permill::from_percent(75); } impl module_collator_selection::Config for Runtime { diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs index 73f9b852f..06a5ff53e 100644 --- a/runtime/karura/src/lib.rs +++ b/runtime/karura/src/lib.rs @@ -324,7 +324,7 @@ impl pallet_session::Config for Runtime { } parameter_types! { - pub const CollatorKickThreshold: Permill = Permill::from_percent(65); + pub const CollatorKickThreshold: Permill = Permill::from_percent(75); } impl module_collator_selection::Config for Runtime {