git.delta.rocks / unique-network / refs/commits / c9b1f9ac6704

difftreelog

fix financial council membership

Daniel Shiposha2024-06-04parent: #5ef1c1c.patch.diff
in: master

2 files changed

modifiedruntime/common/config/governance/financial_council.rsdiffbeforeafterboth
39 type SwapOrigin = RootOrMoreThanHalfCouncil;39 type SwapOrigin = RootOrMoreThanHalfCouncil;
40 type ResetOrigin = EnsureRoot<AccountId>;40 type ResetOrigin = EnsureRoot<AccountId>;
41 type PrimeOrigin = RootOrMoreThanHalfCouncil;41 type PrimeOrigin = RootOrMoreThanHalfCouncil;
42 type MembershipInitialized = FinancialCollective;42 type MembershipInitialized = FinancialCouncil;
43 type MembershipChanged = FinancialCollective;43 type MembershipChanged = FinancialCouncil;
44 type MaxMembers = FinancialCouncilMaxMembers;44 type MaxMembers = FinancialCouncilMaxMembers;
45 type WeightInfo = pallet_membership::weights::SubstrateWeight<Runtime>;45 type WeightInfo = pallet_membership::weights::SubstrateWeight<Runtime>;
46}46}
modifiedruntime/common/config/governance/mod.rsdiffbeforeafterboth
36};36};
3737
38use crate::{38use crate::{
39 Balances, Council, OriginCaller, Preimage, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin,39 Balances, Council, FinancialCouncil, OriginCaller, Preimage, Runtime, RuntimeCall,
40 Scheduler, TechnicalCommittee, Treasury,40 RuntimeEvent, RuntimeOrigin, Scheduler, TechnicalCommittee, Treasury,
41};41};
4242