From a56f90fa9af6193e580098f634579a0df1ffdfd9 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi <shawntabrizi@gmail.com> Date: Thu, 1 Oct 2020 03:18:32 +0200 Subject: [PATCH] Update Treasury Config to use Propotion of Council Members (#7235) * Update treasury config to use propotion of council members * add `_5` --- substrate/bin/node/runtime/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/substrate/bin/node/runtime/src/lib.rs b/substrate/bin/node/runtime/src/lib.rs index 3e0042bb878..3bb336bca32 100644 --- a/substrate/bin/node/runtime/src/lib.rs +++ b/substrate/bin/node/runtime/src/lib.rs @@ -37,7 +37,7 @@ use frame_support::traits::InstanceFilter; use codec::{Encode, Decode}; use sp_core::{ crypto::KeyTypeId, - u32_trait::{_1, _2, _3, _4}, + u32_trait::{_1, _2, _3, _4, _5}, OpaqueMetadata, }; pub use node_primitives::{AccountId, Signature}; @@ -639,12 +639,12 @@ impl pallet_treasury::Trait for Runtime { type ApproveOrigin = EnsureOneOf< AccountId, EnsureRoot<AccountId>, - pallet_collective::EnsureMembers<_4, AccountId, CouncilCollective> + pallet_collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective> >; type RejectOrigin = EnsureOneOf< AccountId, EnsureRoot<AccountId>, - pallet_collective::EnsureMembers<_2, AccountId, CouncilCollective> + pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective> >; type Tippers = Elections; type TipCountdown = TipCountdown; -- GitLab