Skip to content

Commit

Permalink
chore(run-protocol): 3-member committee for preview
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Apr 25, 2022
1 parent 50d8426 commit 6616d86
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/run-protocol/src/econ-behaviors.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const startEconomicCommittee = async (
},
electorateTerms = {
committeeName: 'Initial Economic Committee',
committeeSize: 1,
committeeSize: 3,
},
) => {
const { creatorFacet, instance } = await E(zoe).startInstance(
Expand Down
8 changes: 7 additions & 1 deletion packages/run-protocol/test/runStake/test-runStake.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,13 @@ const bootstrapRunStake = async (
});
produce.client.resolve(mockClient);

await Promise.all([startEconomicCommittee(space), startRunStake(space)]);
await Promise.all([
startEconomicCommittee(space, {
committeeName: 'Me, myself, and I',
committeeSize: 1,
}),
startRunStake(space),
]);
return { chain, space };
};

Expand Down

0 comments on commit 6616d86

Please sign in to comment.