Skip to content

Commit

Permalink
Fixed changed cost exponent in budget election
Browse files Browse the repository at this point in the history
  • Loading branch information
marcvelmer committed Sep 2, 2024
1 parent e52e42e commit 70ba1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/election/budget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class BudgetElection extends UnpublishedElection {
const maxValue = 0;
const maxVoteOverwrites = this.voteType.maxVoteOverwrites;
const maxTotalCost = this.useCensusWeightAsBudget ? 0 : this.maxBudget;
const costExponent = 2;
const costExponent = 1;

return { maxCount, maxValue, maxVoteOverwrites, maxTotalCost, costExponent };
}
Expand Down

0 comments on commit 70ba1b7

Please sign in to comment.