Audit Distribution List
The
validateDistribution
function contains the logic of how the distribution list should be audited to check validity:async function validateDistribution(submissionValue) {
console.log("Validating Disribution List", submissionValue);
return true;
}
The
auditDistribution
function takes the roundNumber
as a parameter and calls the validateAndVoteOnDistributionList
helper function which takes in the validateDistribution
function and roundNumber
as parameters.No need to edit this function when creating a task
Last modified 4d ago