Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1593,22 +1593,12 @@ pub type TransactionExtensions = (
frame_metadata_hash_extension::CheckMetadataHash<Runtime>,
);

parameter_types! {
pub const TriumviratePalletStr: &'static str = "Triumvirate";
pub const TriumvirateMembersPalletStr: &'static str = "TriumvirateMembers";
pub const SenateMembersPalletStr: &'static str = "SenateMembers";
}

type Migrations = (
// Leave this migration in the runtime, so every runtime upgrade tiny rounding errors (fractions of fractions
// of a cent) are cleaned up. These tiny rounding errors occur due to floating point coversion.
pallet_subtensor::migrations::migrate_init_total_issuance::initialise_total_issuance::Migration<
Runtime,
>,
// Remove storage from removed governance pallets
frame_support::migrations::RemovePallet<TriumviratePalletStr, RocksDbWeight>,
frame_support::migrations::RemovePallet<TriumvirateMembersPalletStr, RocksDbWeight>,
frame_support::migrations::RemovePallet<SenateMembersPalletStr, RocksDbWeight>,
);

// Unchecked extrinsic type as expected by this runtime.
Expand Down
Loading