Skip to content

Commit

Permalink
Fix misnested OL tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
msporny committed Feb 24, 2024
1 parent aebb6a0 commit 8cfd244
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3203,12 +3203,11 @@ <h3>Verify Proof Sets and Chains</h3>
</li>
<li>
For each |proof| in |allProofs|, do the following steps:
</li>
<ol class="algorithm">
<li>
<ol class="algorithm">
<li>
Let |matchingProofs| be an empty list.
</li>
<li>
</li>
<li>
If |proof| contains a `previousProof` attribute and that attribute is a string,
add the element from |allProofs| with an `id` attribute matching `previousProof`
to `matchingProofs`. If a proof with `id` does not exist in |allProofs|, an
Expand All @@ -3220,23 +3219,24 @@ <h3>Verify Proof Sets and Chains</h3>
attribute of any element of |allProofs|, an error MUST be raised and SHOULD
convey an error type of
<a href="#MALFORMED_PROOF_ERROR">MALFORMED_PROOF_ERROR</a>.
</li>
<li>
</li>
<li>
Let |unsecuredDocument| be a copy of |securedDocument| with the proof value
removed and then set |unsecuredDocument.proof| to |matchingProofs|.
</li>
<li>
</li>
<li>
Run steps 5 through 8 to validate the contents of |proof|.
</li>
<li>
</li>
<li>
Run steps 10 through 15 of the algorithm in section [[[#verify-proof]]]; if no
exceptions are raised, associate the |isProofVerified| value with this |proof|.
<p class="note">
<p class="note">
We specifically use the value of |unsecuredDocument| as set above, rather than
using the value from step 5 of the algorithm in section [[[#verify-proof]]].
</p>
</li>
</ol>
</p>
</li>
</ol>
</li>
<li>
Return the |allProofs| along with each proof's associated
|isProofVerified| information.
Expand Down

0 comments on commit 8cfd244

Please sign in to comment.