Enforce total author weight == 1

This commit is contained in:
Ladd Hoffman 2023-04-23 08:06:13 -05:00
parent 81823cd009
commit 21a0ef6bda
1 changed files with 5 additions and 0 deletions

View File

@ -113,6 +113,11 @@ export class ValidationPool extends ReputationHolder {
throw new Error(`Each citation magnitude must not exceed revaluation limit ${params.revaluationLimit}`);
}
const totalAuthorWeight = (post.authors ?? []).reduce((total, { weight }) => total += weight, 0);
if (totalAuthorWeight !== 1) {
throw new Error(`Total author weight ${totalAuthorWeight} !== 1`);
}
this.state = ValidationPoolStates.OPEN;
this.setStatus('Open');
this.stakes = new Set();