Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
migration declaration (last position, westend was first)
  • Loading branch information
cheme committed Apr 10, 2023
commit dcdefbe4a07bc5b1557954b31b30731ba9abf8e3
1 change: 1 addition & 0 deletions runtime/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1514,6 +1514,7 @@ pub type Migrations = (
// Unreleased - add new migrations here:
pallet_nomination_pools::migration::v5::MigrateToV5<Runtime>,
parachains_configuration::migration::v5::MigrateToV5<Runtime>,
init_state_migration::InitMigrate,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason why not to move that into migrations::Unreleased,?

migrations::Unreleased migrations do run, we just don't know yet in which of the upcoming Version it will be included.

At release time, merged Unreleased migrations will moved to a new VXXXX migration set.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 I will do, I just merged to master a bit too fast.
(currently I am trying to get better limit but encounter some limitation with try runtime, but will certainly get new limits soon).

);

/// Unchecked extrinsic type as expected by this runtime.
Expand Down