Skip to content

Commit

Permalink
remove pallet from parachain too
Browse files Browse the repository at this point in the history
  • Loading branch information
joepetrowski committed May 30, 2024
1 parent 104a046 commit 38482ff
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions system-parachains/people/people-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,17 @@ pub type SignedExtra = (
pub type UncheckedExtrinsic =
generic::UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;

parameter_types! {
pub const IdentityMigratorPalletName: &'static str = "IdentityMigrator";
}
/// Migrations to apply on runtime upgrade.
pub type Migrations = (
pallet_collator_selection::migration::v2::MigrationToV2<Runtime>,
// remove `identity-migrator`
frame_support::migrations::RemovePallet<
IdentityMigratorPalletName,
<Runtime as frame_system::Config>::DbWeight,
>,
// permanent
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,
);
Expand Down

0 comments on commit 38482ff

Please sign in to comment.