From 89e3e762635a0ccb47b1a23cd4629e099fa42d1f Mon Sep 17 00:00:00 2001 From: Nathan Whitaker Date: Tue, 29 Aug 2023 13:13:09 -0700 Subject: [PATCH] Keep authoring version 1 to allow non-updated miners to mine once the new runtime upgrade occurs --- runtime/src/version.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/version.rs b/runtime/src/version.rs index f7672b15b8..d0d523e0c6 100644 --- a/runtime/src/version.rs +++ b/runtime/src/version.rs @@ -8,7 +8,7 @@ use sp_version::RuntimeVersion; pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("creditcoin-node"), impl_name: create_runtime_str!("creditcoin-node"), - authoring_version: 2, + authoring_version: 1, // The version of the runtime specification. A full node will not attempt to use its native // runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`, // `spec_version`, and `authoring_version` are the same between Wasm and native.