From 5cb66c14f3206db09abec9ad2b1f974ef96b6409 Mon Sep 17 00:00:00 2001 From: remzrn Date: Thu, 27 Oct 2022 18:21:31 +0300 Subject: [PATCH] +For safety of already upgraded validators, ensures that the version number of the released runtime is different. --- node/runtime/src/lib.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/runtime/src/lib.rs b/node/runtime/src/lib.rs index f870f7de..b96af98c 100644 --- a/node/runtime/src/lib.rs +++ b/node/runtime/src/lib.rs @@ -141,11 +141,11 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to equal spec_version. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 52, - impl_version: 52, + spec_version: 53, + impl_version: 53, apis: RUNTIME_API_VERSIONS, transaction_version: 2, - state_version: 52, + state_version: 53, }; #[cfg(feature = "beresheet-runtime")] @@ -157,11 +157,11 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to equal spec_version. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 10052, - impl_version: 10052, + spec_version: 10053, + impl_version: 10053, apis: RUNTIME_API_VERSIONS, transaction_version: 2, - state_version: 52, + state_version: 53, }; /// Native version.