mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 15:51:12 +00:00
Remove Executed Migrations (#7495)
* Polkadot is at .42 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Kusama is on .43 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Westend is at .43 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Rococo is at .42 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Make UMP limits migration more idempotentish Already 100% idempotent per design, but not it wont try to schedule an unneeded upgrade. Note that the case that the new upgrade is already scheduled is not checked. In that case it will still upgrade the same thing again, but should be no problem. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Clippy Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Delete old migration code Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * fmt Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove old tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Polkadot is at .43 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove a ton of shit Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove more Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove unused code Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Rococo is NOT yet at .43, but remove anyway Rococo is the only runtime that is not yet at .43, but keeping the migration code just for it is not worth it since devops can just apply it at any time. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove old test Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: parity-processbot <>
This commit is contained in:
committed by
GitHub
parent
a1eadbff3b
commit
3bbb336ea7
@@ -1514,114 +1514,12 @@ pub type UncheckedExtrinsic =
|
||||
///
|
||||
/// This contains the combined migrations of the last 10 releases. It allows to skip runtime
|
||||
/// upgrades in case governance decides to do so. THE ORDER IS IMPORTANT.
|
||||
pub type Migrations = (
|
||||
migrations::V0940,
|
||||
migrations::V0941,
|
||||
migrations::V0942,
|
||||
migrations::V0943,
|
||||
migrations::Unreleased,
|
||||
);
|
||||
pub type Migrations = migrations::Unreleased;
|
||||
|
||||
/// The runtime migrations per release.
|
||||
#[allow(deprecated, missing_docs)]
|
||||
pub mod migrations {
|
||||
use super::*;
|
||||
use frame_support::traits::{GetStorageVersion, OnRuntimeUpgrade, StorageVersion};
|
||||
|
||||
pub type V0940 = ();
|
||||
pub type V0941 = (); // Node only release - no migrations.
|
||||
pub type V0942 = (
|
||||
parachains_configuration::migration::v5::MigrateToV5<Runtime>,
|
||||
pallet_offences::migration::v1::MigrateToV1<Runtime>,
|
||||
);
|
||||
pub type V0943 = (
|
||||
SetStorageVersions,
|
||||
// Remove UMP dispatch queue <https://github.com/paritytech/polkadot/pull/6271>
|
||||
parachains_configuration::migration::v6::MigrateToV6<Runtime>,
|
||||
ump_migrations::UpdateUmpLimits,
|
||||
);
|
||||
|
||||
/// Migrations that set `StorageVersion`s we missed to set.
|
||||
///
|
||||
/// It's *possible* that these pallets have not in fact been migrated to the versions being set,
|
||||
/// which we should keep in mind in the future if we notice any strange behavior.
|
||||
/// We opted to not check exactly what on-chain versions each pallet is at, since it would be
|
||||
/// an involved effort, this is testnet, and no one has complained
|
||||
/// (https://github.com/paritytech/polkadot/issues/6657#issuecomment-1552956439).
|
||||
pub struct SetStorageVersions;
|
||||
|
||||
impl OnRuntimeUpgrade for SetStorageVersions {
|
||||
fn on_runtime_upgrade() -> Weight {
|
||||
let mut writes = 0;
|
||||
let mut reads = 0;
|
||||
|
||||
// Council
|
||||
if Council::on_chain_storage_version() < 4 {
|
||||
// Safe to assume Council was created with V4 pallet.
|
||||
StorageVersion::new(4).put::<Council>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// Technical Committee
|
||||
if TechnicalCommittee::on_chain_storage_version() < 4 {
|
||||
StorageVersion::new(4).put::<TechnicalCommittee>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// PhragmenElection
|
||||
if PhragmenElection::on_chain_storage_version() < 4 {
|
||||
StorageVersion::new(4).put::<PhragmenElection>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// TechnicalMembership
|
||||
if TechnicalMembership::on_chain_storage_version() < 4 {
|
||||
StorageVersion::new(4).put::<TechnicalMembership>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// Scheduler
|
||||
if Scheduler::on_chain_storage_version() < 4 {
|
||||
StorageVersion::new(4).put::<Scheduler>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// Bounties
|
||||
if Bounties::on_chain_storage_version() < 4 {
|
||||
StorageVersion::new(4).put::<Bounties>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// Tips
|
||||
if Tips::on_chain_storage_version() < 4 {
|
||||
StorageVersion::new(4).put::<Tips>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// NisCounterpartBalances
|
||||
if NisCounterpartBalances::on_chain_storage_version() < 1 {
|
||||
StorageVersion::new(1).put::<NisCounterpartBalances>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
// Crowdloan
|
||||
if Crowdloan::on_chain_storage_version() < 2 {
|
||||
StorageVersion::new(2).put::<Crowdloan>();
|
||||
writes += 1;
|
||||
}
|
||||
reads += 1;
|
||||
|
||||
RocksDbWeight::get().reads_writes(reads, writes)
|
||||
}
|
||||
}
|
||||
|
||||
/// Unreleased migrations. Add new ones here:
|
||||
pub type Unreleased = (
|
||||
@@ -1631,24 +1529,6 @@ pub mod migrations {
|
||||
);
|
||||
}
|
||||
|
||||
/// Helpers to configure all migrations.
|
||||
pub mod ump_migrations {
|
||||
use runtime_parachains::configuration::migration_ump;
|
||||
|
||||
pub const MAX_UPWARD_QUEUE_SIZE: u32 = 8 * 1024 * 1024;
|
||||
pub const MAX_UPWARD_QUEUE_COUNT: u32 = 1398101;
|
||||
pub const MAX_UPWARD_MESSAGE_SIZE: u32 = (1 << 15) - 5; // Checked in test `max_upward_message_size`.
|
||||
pub const MAX_UPWARD_MESSAGE_NUM_PER_CANDIDATE: u32 = 1024;
|
||||
|
||||
pub type UpdateUmpLimits = migration_ump::latest::ScheduleConfigUpdate<
|
||||
super::Runtime,
|
||||
MAX_UPWARD_QUEUE_SIZE,
|
||||
MAX_UPWARD_QUEUE_COUNT,
|
||||
MAX_UPWARD_MESSAGE_SIZE,
|
||||
MAX_UPWARD_MESSAGE_NUM_PER_CANDIDATE,
|
||||
>;
|
||||
}
|
||||
|
||||
/// Executive: handles dispatch to the various modules.
|
||||
pub type Executive = frame_executive::Executive<
|
||||
Runtime,
|
||||
@@ -2340,20 +2220,6 @@ mod encoding_tests {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn max_upward_message_size() {
|
||||
use sp_core::Get;
|
||||
assert_eq!(
|
||||
ump_migrations::MAX_UPWARD_MESSAGE_SIZE,
|
||||
pallet_message_queue::MaxMessageLenOf::<Runtime>::get()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(all(test, feature = "try-runtime"))]
|
||||
mod remote_tests {
|
||||
use super::*;
|
||||
|
||||
Reference in New Issue
Block a user