Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

remove without_storage_info from pallet-collective #7400

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions runtime/polkadot/src/governance/old.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ impl pallet_collective::Config<CouncilCollective> for Runtime {
type SetMembersOrigin = EnsureRoot<AccountId>;
type WeightInfo = weights::pallet_collective_council::WeightInfo<Runtime>;
type MaxProposalWeight = MaxProposalWeight;
type Preimages = Preimage;
}

parameter_types! {
Expand Down Expand Up @@ -174,6 +175,7 @@ impl pallet_collective::Config<TechnicalCollective> for Runtime {
type SetMembersOrigin = EnsureRoot<AccountId>;
type WeightInfo = weights::pallet_collective_technical_committee::WeightInfo<Runtime>;
type MaxProposalWeight = MaxProposalWeight;
type Preimages = Preimage;
}

impl pallet_membership::Config<pallet_membership::Instance1> for Runtime {
Expand Down
2 changes: 2 additions & 0 deletions runtime/rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,7 @@ impl pallet_collective::Config<CouncilCollective> for Runtime {
type SetMembersOrigin = EnsureRoot<AccountId>;
type WeightInfo = weights::pallet_collective_council::WeightInfo<Runtime>;
type MaxProposalWeight = MaxProposalWeight;
type Preimages = Preimage;
}

parameter_types! {
Expand Down Expand Up @@ -514,6 +515,7 @@ impl pallet_collective::Config<TechnicalCollective> for Runtime {
type SetMembersOrigin = EnsureRoot<AccountId>;
type WeightInfo = weights::pallet_collective_technical_committee::WeightInfo<Runtime>;
type MaxProposalWeight = MaxProposalWeight;
type Preimages = Preimage;
}

type MoreThanHalfCouncil = EitherOfDiverse<
Expand Down