From 38021178ddac12ba003eb3ab9fe3a99e7d7779a7 Mon Sep 17 00:00:00 2001 From: Xiliang Chen Date: Tue, 13 Aug 2024 10:37:25 +1200 Subject: [PATCH] update collator kick threshold (#2785) --- 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 {