From 7703130e6e0dc3ef35328854f1284e8503d38ed8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Tue, 5 May 2020 17:41:02 +0200 Subject: [PATCH] Fix unsigned priority of im-online @ kusama. (#1068) --- polkadot/runtime/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 1f631bf19e..1d0636952e 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -485,7 +485,7 @@ impl im_online::Trait for Runtime { type Event = Event; type ReportUnresponsiveness = Offences; type SessionDuration = SessionDuration; - type UnsignedPriority = StakingUnsignedPriority; + type UnsignedPriority = ImOnlineUnsignedPriority; } impl grandpa::Trait for Runtime {