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

Commit

Permalink
remove extra checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kianenigma committed Sep 20, 2022
1 parent 1149e3b commit 635bada
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions frame/staking/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@ 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 @@ -134,11 +129,6 @@ 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,
"wrong version after the upgrade"
);

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

Expand Down

0 comments on commit 635bada

Please sign in to comment.