From c6fdd8303f9192f4680609c402c64fdadbc71a0c Mon Sep 17 00:00:00 2001 From: gaudenzkessler <92718752+gaudenzkessler@users.noreply.github.com> Date: Wed, 15 Jun 2022 17:20:08 +0200 Subject: [PATCH] Align RuntimeSpec version with the parachain (#130) Co-authored-by: Gaudenz Kessler --- runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 0880350..947ca47 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -132,7 +132,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { /// 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. - spec_version: 9, + spec_version: 23, /// Version of the implementation of the specification. Nodes are free to ignore this; it /// serves only as an indication that the code is different; as long as the other two versions @@ -153,7 +153,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { /// index. /// /// It need *not* change when a new module is added or when a dispatchable is added. - transaction_version: 2, + transaction_version: 3, state_version: 0, };