diff --git a/substrate/frame/staking/src/migrations.rs b/substrate/frame/staking/src/migrations.rs index 8f37ae30dd0568b54831bd6a6c718970f090faba..f2ccb4f8b096f14096b8c5461a415ec2589d2ab7 100644 --- a/substrate/frame/staking/src/migrations.rs +++ b/substrate/frame/staking/src/migrations.rs @@ -40,10 +40,14 @@ pub mod v12 { "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" - ); + if HistoryDepth::<T>::exists() { + frame_support::ensure!( + T::HistoryDepth::get() == HistoryDepth::<T>::get(), + "Provided value of HistoryDepth should be same as the existing storage value" + ); + } else { + log::info!("No HistoryDepth in storage; nothing to remove"); + } Ok(Default::default()) }