Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Undo removing migration checks #12330

Merged
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
10 changes: 10 additions & 0 deletions frame/staking/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ pub mod v12 {
impl<T: Config> OnRuntimeUpgrade for MigrateToV12<T> {
#[cfg(feature = "try-runtime")]
fn pre_upgrade() -> Result<Vec<u8>, &'static str> {
frame_support::ensure!(
StorageVersion::<T>::get() == Releases::V11_0_0,
"Expected v11 before upgrading to v12"
);

frame_support::ensure!(
T::HistoryDepth::get() == HistoryDepth::<T>::get(),
"Provided value of HistoryDepth should be same as the existing storage value"
Expand Down Expand Up @@ -129,6 +134,11 @@ pub mod v11 {

#[cfg(feature = "try-runtime")]
fn post_upgrade(_state: Vec<u8>) -> Result<(), &'static str> {
frame_support::ensure!(
StorageVersion::<T>::get() == crate::Releases::V11_0_0,
ruseinov marked this conversation as resolved.
Show resolved Hide resolved
"wrong version after the upgrade"
);

let old_pallet_name = N::get();
let new_pallet_name = <P as PalletInfoAccess>::name();

Expand Down