From f83a4041d213f517f8005325d75f75a15ad524d5 Mon Sep 17 00:00:00 2001 From: Xavier Lau Date: Thu, 15 Sep 2022 17:03:00 +0800 Subject: [PATCH] Companion of paritytech/substrate#9732, ! --- node/runtime/pangolin/src/lib.rs | 1 + node/runtime/pangoro/src/lib.rs | 1 + node/runtime/template/src/lib.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/node/runtime/pangolin/src/lib.rs b/node/runtime/pangolin/src/lib.rs index 3dcf07b910..65544543ab 100644 --- a/node/runtime/pangolin/src/lib.rs +++ b/node/runtime/pangolin/src/lib.rs @@ -130,6 +130,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 0, + state_version: 0, }; /// The BABE epoch configuration at genesis. diff --git a/node/runtime/pangoro/src/lib.rs b/node/runtime/pangoro/src/lib.rs index bbb5bac548..e25b17f3db 100644 --- a/node/runtime/pangoro/src/lib.rs +++ b/node/runtime/pangoro/src/lib.rs @@ -100,6 +100,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 0, + state_version: 0, }; /// The BABE epoch configuration at genesis. diff --git a/node/runtime/template/src/lib.rs b/node/runtime/template/src/lib.rs index 462aa76ff7..26fd33afdd 100644 --- a/node/runtime/template/src/lib.rs +++ b/node/runtime/template/src/lib.rs @@ -87,6 +87,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 0, + state_version: 0, }; #[cfg(feature = "std")]