const VerdictReproduced, VerdictTestsPass, VerdictOutputMatch, VerdictPolicyOK, VerdictRejected
1const (
2 VerdictReproduced = "reproduced" // re-ran and got the same output commitment
3 VerdictTestsPass = "tests-pass" // the referenced test suite passed
4 VerdictOutputMatch = "output-match" // output matches its commitment
5 VerdictPolicyOK = "policy-ok" // no forbidden tool / policy respected
6 VerdictRejected = "rejected" // the work is wrong or invalid
7)Verdicts a validator can record against a receipt.