Skip to content

Commit

Permalink
feat: ensure members can propose questions on multiple contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique committed Sep 25, 2024
1 parent c924146 commit cfe20f4
Show file tree
Hide file tree
Showing 5 changed files with 428 additions and 238 deletions.
3 changes: 0 additions & 3 deletions packages/governance/src/committee.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,6 @@ export const start = (zcf, privateArgs, baggage) => {
getPublicFacet() {
return publicFacet;
},
shutdown() {
zcf.shutdown('EC Charter Shutdown');
},
},
);

Expand Down
1 change: 0 additions & 1 deletion packages/governance/src/typeGuards.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ export const ElectorateCreatorI = M.interface('Committee AdminFacet', {
getVoterInvitations: M.call().returns(M.arrayOf(M.promise())),
getQuestionSubscriber: M.call().returns(SubscriberShape),
getPublicFacet: M.call().returns(ElectoratePublicShape),
shutdown: M.call().returns()
});

export const QuestionStatsShape = harden({
Expand Down
4 changes: 0 additions & 4 deletions packages/inter-protocol/src/econCommitteeCharter.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ export const start = async (zcf, privateArgs, baggage) => {
.optional(M.string())
.returns(),
makeCharterMemberInvitation: M.call().returns(M.promise()),
shutdown: M.call().returns(),
});

const creatorFacet = prepareExo(
Expand All @@ -180,9 +179,6 @@ export const start = async (zcf, privateArgs, baggage) => {
},
makeCharterMemberInvitation: () =>
zcf.makeInvitation(charterMemberHandler, INVITATION_MAKERS_DESC),
shutdown: () => {
zcf.shutdown('EC Charter Shutdown');
},
},
);

Expand Down
Loading

0 comments on commit cfe20f4

Please sign in to comment.