From 5590ba2fbe3b118add2697fc8a41f7f1f0fd786d Mon Sep 17 00:00:00 2001 From: thiolliere Date: Wed, 4 Sep 2019 12:47:25 +0200 Subject: [PATCH] forward ported version bump (#418) --- polkadot/runtime/src/lib.rs | 2 +- polkadot/runtime/src/parachains.rs | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/polkadot/runtime/src/lib.rs b/polkadot/runtime/src/lib.rs index b83da9c178..d87ff78967 100644 --- a/polkadot/runtime/src/lib.rs +++ b/polkadot/runtime/src/lib.rs @@ -98,7 +98,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kusama"), impl_name: create_runtime_str!("parity-kusama"), authoring_version: 1, - spec_version: 1001, + spec_version: 1002, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; diff --git a/polkadot/runtime/src/parachains.rs b/polkadot/runtime/src/parachains.rs index 32dc974d1c..c1f8529d6f 100644 --- a/polkadot/runtime/src/parachains.rs +++ b/polkadot/runtime/src/parachains.rs @@ -37,9 +37,6 @@ use srml_support::{ use inherents::{ProvideInherent, InherentData, RuntimeString, MakeFatalError, InherentIdentifier}; -#[cfg(any(feature = "std", test))] -use sr_primitives::{StorageOverlay, ChildrenStorageOverlay}; - #[cfg(any(feature = "std", test))] use rstd::marker::PhantomData;