From 43e93d7924609fd05d19be61865b8140e6e66def Mon Sep 17 00:00:00 2001 From: Mara Broda Date: Fri, 17 Jun 2022 13:25:51 +0200 Subject: [PATCH 1/2] kusama: bump transaction_version to 12 --- runtime/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index cc3df9cbd284..648feb8dc165 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -122,7 +122,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { apis: RUNTIME_API_VERSIONS, #[cfg(feature = "disable-runtime-api")] apis: version::create_apis_vec![[]], - transaction_version: 11, + transaction_version: 12, state_version: 0, }; From 70bd1c6e3a2a75c65dc1fd949f370b4e565c480e Mon Sep 17 00:00:00 2001 From: Mara Broda Date: Fri, 17 Jun 2022 13:27:45 +0200 Subject: [PATCH 2/2] polkadot: bump transaction_version to 13 --- runtime/polkadot/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 24ea0b6fa9bd..524d0ef23fee 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -118,7 +118,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { apis: RUNTIME_API_VERSIONS, #[cfg(feature = "disable-runtime-api")] apis: version::create_apis_vec![[]], - transaction_version: 12, + transaction_version: 13, state_version: 0, };