From 104a04696bf6dc096dfe9104e190536cba5efdc2 Mon Sep 17 00:00:00 2001 From: joepetrowski Date: Thu, 30 May 2024 12:58:34 +0200 Subject: [PATCH] also remove migrator pallet --- relay/kusama/src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 3272c966d2..29400e89e6 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1813,6 +1813,7 @@ pub mod migrations { pub const StateTrieMigrationName: &'static str = "StateTrieMigration"; pub const ImOnlinePalletName: &'static str = "ImOnline"; pub const IdentityPalletName: &'static str = "Identity"; + pub const IdentityMigratorPalletName: &'static str = "IdentityMigrator"; } /// Upgrade Session keys to exclude `ImOnline` key. @@ -1950,11 +1951,15 @@ pub mod migrations { ::DbWeight, >, CancelAuctions, - // Remove `identity` pallet on-chain storage. `identity-migrator` is stateless. + // Remove `identity` and `identity-migrator`. frame_support::migrations::RemovePallet< IdentityPalletName, ::DbWeight, >, + frame_support::migrations::RemovePallet< + IdentityMigratorPalletName, + ::DbWeight, + >, ); /// Migrations/checks that do not need to be versioned and can run on every update.