@@ -47,10 +47,10 @@ contract OpenVmHalo2Verifier is Halo2Verifier, IOpenVmHalo2Verifier {
4747 /// proof[14 * 32..(14 + GUEST_PVS_LENGTH) * 32]: guestPvs[0..GUEST_PVS_LENGTH]
4848 /// proof[(14 + GUEST_PVS_LENGTH) * 32..]: Guest PVs Suffix
4949 ///
50+ /// @param guestPvs The PVs revealed by the OpenVM guest program.
5051 /// @param partialProof All components of the proof except the Guest PVs,
5152 /// leaf and app exe commits. The expected format is:
5253 /// `abi.encodePacked(kzgAccumulators, proofSuffix)`
53- /// @param guestPvs The PVs revealed by the OpenVM guest program.
5454 /// @param appExeCommit The commitment to the OpenVM application executable whose execution
5555 /// is being verified.
5656 function verify (bytes calldata guestPvs , bytes calldata partialProof , bytes32 appExeCommit ) external view {
@@ -89,13 +89,6 @@ contract OpenVmHalo2Verifier is Halo2Verifier, IOpenVmHalo2Verifier {
8989 /// only memory allocation that occurs in the call frame, we know that the
9090 /// memory was not written to before.
9191 ///
92- /// @param guestPvs The PVs revealed by the OpenVM guest program.
93- /// @param partialProof All components of the proof except the Guest PVs,
94- /// leaf and app exe commits. The expected format is:
95- /// `abi.encodePacked(kzgAccumulators, proofSuffix)`
96- /// @param appExeCommit The commitment to the OpenVM application executable
97- /// whose execution is being verified.
98- ///
9992 /// @return proofPtr Memory pointer to the beginning of the constructed
10093 /// proof.
10194 function _constructProof (bytes calldata guestPvs , bytes calldata partialProof , bytes32 appExeCommit )
0 commit comments