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
--- a/runtime/common/config/governance/financial_council.rs
+++ b/runtime/common/config/governance/financial_council.rs
@@ -39,8 +39,8 @@
 	type SwapOrigin = RootOrMoreThanHalfCouncil;
 	type ResetOrigin = EnsureRoot<AccountId>;
 	type PrimeOrigin = RootOrMoreThanHalfCouncil;
-	type MembershipInitialized = FinancialCollective;
-	type MembershipChanged = FinancialCollective;
+	type MembershipInitialized = FinancialCouncil;
+	type MembershipChanged = FinancialCouncil;
 	type MaxMembers = FinancialCouncilMaxMembers;
 	type WeightInfo = pallet_membership::weights::SubstrateWeight<Runtime>;
 }
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