From 615c58f379029cbea3ac324f72dc793c1a08adea Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Sat, 2 Nov 2019 15:46:48 +0000 Subject: [PATCH] im-online module should report offences (#527) * im-online module should report offences * Bump runtime --- polkadot/runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/runtime/src/lib.rs b/polkadot/runtime/src/lib.rs index 2ad04f1b06..6bcbbfe390 100644 --- a/polkadot/runtime/src/lib.rs +++ b/polkadot/runtime/src/lib.rs @@ -99,7 +99,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kusama"), impl_name: create_runtime_str!("parity-kusama"), authoring_version: 1, - spec_version: 1011, + spec_version: 1012, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; @@ -437,7 +437,7 @@ impl im_online::Trait for Runtime { type Event = Event; type Call = Call; type SubmitTransaction = SubmitTransaction; - type ReportUnresponsiveness = (); + type ReportUnresponsiveness = Offences; } impl grandpa::Trait for Runtime {