From e303f92f200b3fcf51704cc5aa90ef3563ac2c9c Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Fri, 17 Apr 2020 12:10:58 +0200 Subject: [PATCH] Companion for Runtime Semver (#987) * Companion for Runtime Semver * Fix --- polkadot/runtime/kusama/src/lib.rs | 1 + polkadot/runtime/polkadot/src/lib.rs | 1 + polkadot/runtime/test-runtime/src/lib.rs | 1 + polkadot/runtime/westend/src/lib.rs | 1 + 4 files changed, 4 insertions(+) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 028e33fb52..3c7b8acf78 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -87,6 +87,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 1058, impl_version: 0, apis: RUNTIME_API_VERSIONS, + transaction_version: 1, }; /// Native version. diff --git a/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index 468d1cb294..805b6590ac 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -89,6 +89,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 1007, impl_version: 0, apis: RUNTIME_API_VERSIONS, + transaction_version: 1, }; /// Native version. diff --git a/polkadot/runtime/test-runtime/src/lib.rs b/polkadot/runtime/test-runtime/src/lib.rs index 9271fedd65..f339133edf 100644 --- a/polkadot/runtime/test-runtime/src/lib.rs +++ b/polkadot/runtime/test-runtime/src/lib.rs @@ -83,6 +83,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 1050, impl_version: 0, apis: RUNTIME_API_VERSIONS, + transaction_version: 1, }; /// Native version. diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index cd646ff498..96263c05e8 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -86,6 +86,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 3, impl_version: 0, apis: RUNTIME_API_VERSIONS, + transaction_version: 1, }; /// Native version.