We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
matched
1 parent 631ac7b commit 4fa2d4eCopy full SHA for 4fa2d4e
lib/ProofSet.js
@@ -320,7 +320,10 @@ async function _matchProofSet({
320
continue;
321
}
322
323
- // next, find the suite that can verify the proof
+ // next, find the suite that can verify the proof; if found, `matched`
324
+ // will be set to `true` and the proof will be added to `purposeToProofs`
325
+ // and `proofToSuite` to be processed -- otherwise it will not be; if
326
+ // no proofs are added for a given purpose, an exception will be thrown
327
let matched = false;
328
for(const s of suites) {
329
// `matchingProofs` is a map of promises that resolve to whether a
0 commit comments