From e87bcd2be49c54f856a8d529db6449f78750d8f0 Mon Sep 17 00:00:00 2001 From: Evgeny Svirsky Date: Fri, 24 Apr 2026 18:02:35 +0200 Subject: [PATCH 1/2] - Remove duplicate migration. --- 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 7c4112837d..29a7bc3104 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -379,7 +379,7 @@ impl frame_system::Config for Runtime { type MaxConsumers = frame_support::traits::ConstU32<16>; type Nonce = Nonce; type Block = Block; - type SingleBlockMigrations = Migrations; + type SingleBlockMigrations = (); type MultiBlockMigrator = (); type PreInherents = (); type PostInherents = (); From c15501f4d04e60db0a9e82d98c7d6888dd4e5e79 Mon Sep 17 00:00:00 2001 From: Evgeny Svirsky Date: Fri, 24 Apr 2026 18:02:50 +0200 Subject: [PATCH 2/2] - version bump --- 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 29a7bc3104..dda7465128 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -272,7 +272,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: 401, + spec_version: 402, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,