Skip to content

Commit

Permalink
Remove one-shot migrations from Kusama Coretime (#300)
Browse files Browse the repository at this point in the history
Several one-shot (single use) migrations were used in the launch of
Coretime on Kusama.
This PR removes them from the codebase since they are no longer
relevant.

I've intentionally not bumped the spec_version, since I'm not suggesting
this be released.

- [ ] Does not require a CHANGELOG entry
  • Loading branch information
seadanda authored May 7, 2024
1 parent 5a50c5a commit a0504f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 266 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Include patch to release stuck collator bonds ([polkadot-fellows/runtimes#289](https://github.com/polkadot-fellows/runtimes/pull/289))
- Kusama chains: allow arbitrary XCM execution ([polkadot-fellows/runtimes#261](https://github.com/polkadot-fellows/runtimes/pull/261))

### Removed

- Remove one-shot migrations from Kusama Coretime ([polkadot-fellows/runtimes#300](https://github.com/polkadot-fellows/runtimes/pull/300))

## [1.2.3] 29.04.2024

### Added
Expand Down
3 changes: 0 additions & 3 deletions system-parachains/coretime/coretime-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

mod coretime;
mod migrations;
#[cfg(test)]
mod tests;
mod weights;
Expand Down Expand Up @@ -110,8 +109,6 @@ pub type UncheckedExtrinsic =
pub type Migrations = (
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,
pallet_collator_selection::migration::v2::MigrationToV2<Runtime>,
migrations::bootstrapping::RemoveOutdatedPoolAssignment,
migrations::bootstrapping::OnboardPeople,
);

/// Executive: handles dispatch to the various modules.
Expand Down
263 changes: 0 additions & 263 deletions system-parachains/coretime/coretime-kusama/src/migrations.rs

This file was deleted.

0 comments on commit a0504f4

Please sign in to comment.