From 2ebe089f99f15e9f74d4cfe6641e386be225bd9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Thei=C3=9Fen?= <alex.theissen@me.com> Date: Mon, 21 Feb 2022 11:57:56 +0100 Subject: [PATCH] Bump state version (#1009) --- cumulus/polkadot-parachains/canvas-kusama/src/lib.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/cumulus/polkadot-parachains/canvas-kusama/src/lib.rs b/cumulus/polkadot-parachains/canvas-kusama/src/lib.rs index d0de8b22789..3dd179179fe 100644 --- a/cumulus/polkadot-parachains/canvas-kusama/src/lib.rs +++ b/cumulus/polkadot-parachains/canvas-kusama/src/lib.rs @@ -111,17 +111,11 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("canvas-kusama"), impl_name: create_runtime_str!("canvas-kusama"), authoring_version: 1, - spec_version: 15, + spec_version: 16, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, - // Since Canvas is a "live" chain (on Rococo anyways), we need to set this to `0` until a - // migration path to `state_version = 1` is ready. - // - // See the following PRs for more details: - // - https://github.com/paritytech/substrate/pull/9732 - // - https://github.com/paritytech/substrate/pull/10073 - state_version: 0, + state_version: 1, }; /// The version information used to identify this runtime when compiled natively. -- GitLab