Skip to content

Commit

Permalink
add pallet_im_online::migration to Unreleased migrations (#7387)
Browse files Browse the repository at this point in the history
* add pallet_im_online::migration to Unreleased migrations

refs paritytech/polkadot#7309 (comment)

* ".git/.scripts/commands/fmt/fmt.sh"

---------

Co-authored-by: command-bot <>
  • Loading branch information
melekes authored Jun 25, 2023
1 parent 1cbd79d commit 7e360ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions relay/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1532,8 +1532,10 @@ pub mod migrations {
);

/// Unreleased migrations. Add new ones here:
pub type Unreleased =
(pallet_society::migrations::MigrateToV2<Runtime, (), past_payouts::PastPayouts>,);
pub type Unreleased = (
pallet_society::migrations::MigrateToV2<Runtime, (), past_payouts::PastPayouts>,
pallet_im_online::migration::v1::Migration<Runtime>,
);

/// Migrations that set `StorageVersion`s we missed to set.
pub struct SetStorageVersions;
Expand Down
2 changes: 1 addition & 1 deletion relay/polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,7 @@ pub mod migrations {
);

/// Unreleased migrations. Add new ones here:
pub type Unreleased = ();
pub type Unreleased = (pallet_im_online::migration::v1::Migration<Runtime>,);

/// Migrations that set `StorageVersion`s we missed to set.
pub struct SetStorageVersions;
Expand Down

0 comments on commit 7e360ad

Please sign in to comment.