Skip to content

Commit

Permalink
Make cargo fmt happy
Browse files Browse the repository at this point in the history
  • Loading branch information
khssnv committed Dec 13, 2024
1 parent c894997 commit c108bf1
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions runtime/cere/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1452,21 +1452,22 @@ pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, Si
// const IDENTITY_MIGRATION_KEY_LIMIT: u64 = u64::MAX; // for `pallet_identity` migration below

/// Runtime migrations
type Migrations = (
// Migrations related to substrate version upgrades
// pallet_nomination_pools::migration::versioned::V5toV6<Runtime>,
// pallet_nomination_pools::migration::versioned::V6ToV7<Runtime>,
// pallet_nomination_pools::migration::versioned::V7ToV8<Runtime>,
// pallet_staking::migrations::v14::MigrateToV14<Runtime>,
// pallet_grandpa::migrations::MigrateV4ToV5<Runtime>,
// pallet_identity::migration::versioned::V0ToV1<Runtime, IDENTITY_MIGRATION_KEY_LIMIT>,

// The 'Unreleased' migration enables DAC Verification, that atm. is enabled at QANET only.
// Uncomment this line when DAC is ready for TESTNET and MAINNET migrations::Unreleased,
// migrations::Unreleased,

// Migrations for DAC and Payouts on QANET
);
// type Migrations = (
// // Migrations related to substrate version upgrades
// // pallet_nomination_pools::migration::versioned::V5toV6<Runtime>,
// // pallet_nomination_pools::migration::versioned::V6ToV7<Runtime>,
// // pallet_nomination_pools::migration::versioned::V7ToV8<Runtime>,
// // pallet_staking::migrations::v14::MigrateToV14<Runtime>,
// // pallet_grandpa::migrations::MigrateV4ToV5<Runtime>,
// // pallet_identity::migration::versioned::V0ToV1<Runtime, IDENTITY_MIGRATION_KEY_LIMIT>,

// // The 'Unreleased' migration enables DAC Verification, that atm. is enabled at QANET only.
// // Uncomment this line when DAC is ready for TESTNET and MAINNET migrations::Unreleased,
// // migrations::Unreleased,

// // Migrations for DAC and Payouts on QANET
// );
type Migrations = ();

pub mod migrations {
use super::*;
Expand Down

0 comments on commit c108bf1

Please sign in to comment.