diff --git a/runtime/litentry/src/migration/mod.rs b/runtime/litentry/src/migration/mod.rs index 548a2e30bd..18445704e6 100644 --- a/runtime/litentry/src/migration/mod.rs +++ b/runtime/litentry/src/migration/mod.rs @@ -47,6 +47,10 @@ where BalanceOf: From, { pub fn replace_delegator_state_storage() -> frame_support::weights::Weight { + log::info!( + target: "ReplaceParachainStakingStorage", + "running migration to ParachainStaking DelegatorState" + ); let pallet_prefix: &[u8] = b"ParachainStaking"; let storage_item_prefix: &[u8] = b"DelegatorState"; // Read all the data into memory. @@ -93,6 +97,10 @@ where } pub fn replace_candidate_info_storage() -> frame_support::weights::Weight { + log::info!( + target: "ReplaceParachainStakingStorage", + "running migration to ParachainStaking CandidateInfo" + ); let pallet_prefix: &[u8] = b"ParachainStaking"; let storage_item_prefix: &[u8] = b"CandidateInfo"; // Read all the data into memory. @@ -145,6 +153,10 @@ where } pub fn replace_delegation_scheduled_requests_storage() -> frame_support::weights::Weight { + log::info!( + target: "ReplaceParachainStakingStorage", + "running migration to ParachainStaking DelegationScheduledRequests" + ); let pallet_prefix: &[u8] = b"ParachainStaking"; let storage_item_prefix: &[u8] = b"DelegationScheduledRequests"; // Read all the data into memory. @@ -195,6 +207,10 @@ where } pub fn replace_top_delegations_storage() -> frame_support::weights::Weight { + log::info!( + target: "ReplaceParachainStakingStorage", + "running migration to ParachainStaking TopDelegations" + ); let pallet_prefix: &[u8] = b"ParachainStaking"; let storage_item_prefix: &[u8] = b"TopDelegations"; // Read all the data into memory. @@ -238,6 +254,10 @@ where } pub fn replace_bottom_delegations_storage() -> frame_support::weights::Weight { + log::info!( + target: "ReplaceParachainStakingStorage", + "running migration to ParachainStaking BottomDelegations" + ); let pallet_prefix: &[u8] = b"ParachainStaking"; let storage_item_prefix: &[u8] = b"BottomDelegations"; // Read all the data into memory. diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 06744f1b93..53017f60e4 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -267,10 +267,13 @@ try-runtime = [ "frame-try-runtime", "orml-tokens/try-runtime", "orml-xtokens/try-runtime", + "pallet-account-fix/try-runtime", "pallet-asset-manager/try-runtime", "pallet-aura/try-runtime", "pallet-authorship/try-runtime", "pallet-balances/try-runtime", + "pallet-bitacross/try-runtime", + "pallet-bitacross-mimic/try-runtime", "pallet-bounties/try-runtime", "pallet-bridge/try-runtime", "pallet-bridge-transfer/try-runtime", @@ -278,8 +281,9 @@ try-runtime = [ "pallet-democracy/try-runtime", "pallet-ethereum/try-runtime", "pallet-evm/try-runtime", - "pallet-identity/try-runtime", + "pallet-evm-assertions/try-runtime", "pallet-extrinsic-filter/try-runtime", + "pallet-identity/try-runtime", "pallet-group/try-runtime", "pallet-identity-management/try-runtime", "pallet-membership/try-runtime", @@ -300,7 +304,4 @@ try-runtime = [ "pallet-vesting/try-runtime", "pallet-xcm/try-runtime", "parachain-info/try-runtime", - "pallet-account-fix/try-runtime", - "pallet-bitacross/try-runtime", - "pallet-bitacross-mimic/try-runtime", ]