@@ -264,6 +264,7 @@ impl CollectiveInterface<AccountId, H256, u32> for TriumvirateVotes {
264264}
265265
266266// We call pallet_collective TriumvirateCollective
267+ #[ allow( dead_code) ]
267268type TriumvirateCollective = pallet_collective:: Instance1 ;
268269impl pallet_collective:: Config < TriumvirateCollective > for Test {
269270 type RuntimeOrigin = RuntimeOrigin ;
@@ -281,6 +282,7 @@ impl pallet_collective::Config<TriumvirateCollective> for Test {
281282}
282283
283284// We call council members Triumvirate
285+ #[ allow( dead_code) ]
284286type TriumvirateMembership = pallet_membership:: Instance1 ;
285287impl pallet_membership:: Config < TriumvirateMembership > for Test {
286288 type RuntimeEvent = RuntimeEvent ;
@@ -297,6 +299,7 @@ impl pallet_membership::Config<TriumvirateMembership> for Test {
297299
298300// This is a dummy collective instance for managing senate members
299301// Probably not the best solution, but fastest implementation
302+ #[ allow( dead_code) ]
300303type SenateCollective = pallet_collective:: Instance2 ;
301304impl pallet_collective:: Config < SenateCollective > for Test {
302305 type RuntimeOrigin = RuntimeOrigin ;
@@ -314,6 +317,7 @@ impl pallet_collective::Config<SenateCollective> for Test {
314317}
315318
316319// We call our top K delegates membership Senate
320+ #[ allow( dead_code) ]
317321type SenateMembership = pallet_membership:: Instance2 ;
318322impl pallet_membership:: Config < SenateMembership > for Test {
319323 type RuntimeEvent = RuntimeEvent ;
0 commit comments