From 7815e7001b98793e2b531bf558e511462608a796 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Sun, 5 Sep 2021 11:58:14 -0500 Subject: [PATCH] set `DisputesHandler` in initializer (#3788) --- polkadot/runtime/rococo/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/runtime/rococo/src/lib.rs b/polkadot/runtime/rococo/src/lib.rs index 550f499ae1..247e1ae56b 100644 --- a/polkadot/runtime/rococo/src/lib.rs +++ b/polkadot/runtime/rococo/src/lib.rs @@ -105,7 +105,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("rococo"), impl_name: create_runtime_str!("parity-rococo-v1.7"), authoring_version: 0, - spec_version: 9101, + spec_version: 9102, impl_version: 0, #[cfg(not(feature = "disable-runtime-api"))] apis: RUNTIME_API_VERSIONS, @@ -585,7 +585,7 @@ impl runtime_parachains::inclusion::RewardValidators for RewardValidators { impl parachains_inclusion::Config for Runtime { type Event = Event; - type DisputesHandler = (); + type DisputesHandler = ParasDisputes; type RewardValidators = RewardValidators; }