Skip to content

Commit

Permalink
fixup! Add vote lifecycle workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed Jun 14, 2023
1 parent 7d11f97 commit a36e16e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions votes/initiateNewVote/generateNewVotePR.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ for await (const member of readReadme(readLines({ input, crlfDelay }))) {

input.destroy?.();

const shareholderThreshold = 2; // Math.ceil(tscMembersArray.length / 4);
const shareholdersThreshold = 3; // Math.ceil(tscMembersArray.length / 4);

const keyServerURL = "hkps://keys.openpgp.org";

Expand All @@ -189,7 +189,7 @@ await generateNewVoteFolder({
baseBranch: "main",
forceClone: !argv["tsc-repository-path"],
},
shareholdersThreshold: shareholderThreshold,
shareholdersThreshold,
shareholders: tscMembersArray.map(({ email }) => email),
allowedVoters: tscMembersArray.map(
(voter) => `${voter.name} <${voter.email}>`
Expand Down

0 comments on commit a36e16e

Please sign in to comment.