From 7f44b975f276caab86699bd24e614b33049fa7a0 Mon Sep 17 00:00:00 2001 From: Roman Useinov Date: Thu, 29 Sep 2022 09:55:04 +0200 Subject: [PATCH] [Migration] Refund stored multisig calls --- runtime/kusama/src/lib.rs | 1 + runtime/polkadot/src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 048f9b5a0e3b..de732a0dcde7 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1479,6 +1479,7 @@ pub type Executive = frame_executive::Executive< pallet_preimage::migration::v1::Migration, pallet_scheduler::migration::v3::MigrateToV4, pallet_democracy::migrations::v1::Migration, + pallet_multisig::migrations::v1::MigrateToV1, ), >; /// The payload being signed in the transactions. diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 57aa23a2d8e0..e86e2086a8b0 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1565,6 +1565,7 @@ pub type Executive = frame_executive::Executive< pallet_preimage::migration::v1::Migration, pallet_scheduler::migration::v3::MigrateToV4, pallet_democracy::migrations::v1::Migration, + pallet_multisig::migrations::v1::MigrateToV1, ), >;