From 5b77d6dfce1c8cdc8393e2c98120bdafbabda33d Mon Sep 17 00:00:00 2001
From: Hugo Trentesaux <hugo@trentesaux.fr>
Date: Thu, 15 Feb 2024 16:44:19 +0100
Subject: [PATCH] update runtime version

and documentation to generate it locally
---
 docs/dev/verify-runtime-code.md | 3 ++-
 runtime/gdev/src/lib.rs         | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/docs/dev/verify-runtime-code.md b/docs/dev/verify-runtime-code.md
index a00a8a55f..9a2413e45 100644
--- a/docs/dev/verify-runtime-code.md
+++ b/docs/dev/verify-runtime-code.md
@@ -9,7 +9,7 @@ docker run \
   -e PACKAGE=gdev-runtime \
   -e RUNTIME_DIR=runtime/gdev \
   -v $PWD:/build \
-  paritytech/srtool:1.60.0 build --app --json -cM
+  paritytech/srtool:1.74.0-0.13.0 build --app --json -cM
 ```
 
 Then, the runtime wasm bytecode is generated in this location:
@@ -19,5 +19,6 @@ runtime/gdev/target/srtool/release/wbuild/gdev-runtime/gdev_runtime.compact.comp
 ```
 
 To compare it to last official :
+
 - download it here : https://git.duniter.org/nodes/rust/duniter-v2s/-/releases
 - compare `sha256sum` of it and of the one you've built
diff --git a/runtime/gdev/src/lib.rs b/runtime/gdev/src/lib.rs
index e77cd6809..43902ada7 100644
--- a/runtime/gdev/src/lib.rs
+++ b/runtime/gdev/src/lib.rs
@@ -94,7 +94,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
     //   `spec_version`, and `authoring_version` are the same between Wasm and native.
     // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
     //   the compatible custom types.
-    spec_version: 800,
+    spec_version: 801,
     impl_version: 1,
     apis: RUNTIME_API_VERSIONS,
     transaction_version: 1,
-- 
GitLab