Skip to content

Commit 10676dd

Browse files
committed
chore: flip comment
1 parent 66dc440 commit 10676dd

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/OpenVmHalo2Verifier.sol

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)