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.