From 2c776847913af821e9225f9d6235d88079359146 Mon Sep 17 00:00:00 2001 From: "rishitesh.mishra@spaceandtime.io" Date: Wed, 24 Jun 2026 16:06:14 +0530 Subject: [PATCH] chore(runtime): bump spec_version 249 -> 250 Required so clients (Polkadot.JS Apps, subxt, block explorers) refresh their cached metadata after the prover-db-indexer pallet was wired into construct_runtime!. Without the bump, the new pallet is invisible to tools that key metadata by spec_version even though setCode succeeds. --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index af3c5f65..77c23818 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -208,7 +208,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: 249, + spec_version: 250, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,