From ab4c57ecb2171bf66a91ce455c9fc82132b3044c Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Mon, 31 Jan 2022 14:43:53 +0300 Subject: [PATCH] bump chain spec versions (#1297) --- bridges/primitives/chain-kusama/src/lib.rs | 4 ++-- bridges/primitives/chain-polkadot/src/lib.rs | 4 ++-- bridges/primitives/chain-westend/src/lib.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bridges/primitives/chain-kusama/src/lib.rs b/bridges/primitives/chain-kusama/src/lib.rs index 3fa3993a98a1..953da9f4f094 100644 --- a/bridges/primitives/chain-kusama/src/lib.rs +++ b/bridges/primitives/chain-kusama/src/lib.rs @@ -37,10 +37,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: sp_version::create_runtime_str!("kusama"), impl_name: sp_version::create_runtime_str!("parity-kusama"), authoring_version: 2, - spec_version: 9100, + spec_version: 9140, impl_version: 0, apis: sp_version::create_apis_vec![[]], - transaction_version: 5, + transaction_version: 8, state_version: 0, }; diff --git a/bridges/primitives/chain-polkadot/src/lib.rs b/bridges/primitives/chain-polkadot/src/lib.rs index 31141a25dcf0..02c201b72052 100644 --- a/bridges/primitives/chain-polkadot/src/lib.rs +++ b/bridges/primitives/chain-polkadot/src/lib.rs @@ -37,10 +37,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: sp_version::create_runtime_str!("polkadot"), impl_name: sp_version::create_runtime_str!("parity-polkadot"), authoring_version: 0, - spec_version: 9100, + spec_version: 9140, impl_version: 0, apis: sp_version::create_apis_vec![[]], - transaction_version: 7, + transaction_version: 9, state_version: 0, }; diff --git a/bridges/primitives/chain-westend/src/lib.rs b/bridges/primitives/chain-westend/src/lib.rs index 91f4a61e47e8..af0ad27c9bc1 100644 --- a/bridges/primitives/chain-westend/src/lib.rs +++ b/bridges/primitives/chain-westend/src/lib.rs @@ -55,10 +55,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: sp_version::create_runtime_str!("westend"), impl_name: sp_version::create_runtime_str!("parity-westend"), authoring_version: 2, - spec_version: 51, + spec_version: 9140, impl_version: 0, apis: sp_version::create_apis_vec![[]], - transaction_version: 5, + transaction_version: 8, state_version: 0, };