Skip to content

Commit 2dc6f93

Browse files
Merge branch 'testnet' into feat/turn-program-ids-mapping-testnet
2 parents 970a753 + d603f66 commit 2dc6f93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/src/core/AlignedProofAggregationService.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ contract AlignedProofAggregationService is
2222
/// @dev This can either be a specific SP1Verifier for a specific version, or the
2323
/// SP1VerifierGateway which can be used to verify proofs for any version of SP1.
2424
/// For the list of supported verifiers on each chain, see:
25-
/// https://docs.succinct.xyz/onchain-verification/contract-addresses
25+
/// https://docs.succinct.xyz/docs/sp1/verification/contract-addresses
2626
address public sp1VerifierAddress;
2727

2828
/// @notice The address of the Wallet that is allowed to call the verify function.
@@ -75,7 +75,7 @@ contract AlignedProofAggregationService is
7575
revert InvalidProgramId(programId, IAlignedProofAggregationService.VerifierType.SP1, programIds[programId]);
7676
}
7777

78-
// In dev mode, poofs are mocked, so we skip the verification part
78+
// In dev mode, proofs are mocked, so we skip the verification part
7979
if (_isSP1VerificationEnabled()) {
8080
ISP1Verifier(sp1VerifierAddress).verifyProof(programId, sp1PublicValues, sp1ProofBytes);
8181
}
@@ -94,7 +94,7 @@ contract AlignedProofAggregationService is
9494
revert InvalidProgramId(programId, IAlignedProofAggregationService.VerifierType.RISC0, programIds[programId]);
9595
}
9696

97-
// In dev mode, poofs are mocked, so we skip the verification part
97+
// In dev mode, proofs are mocked, so we skip the verification part
9898
if (_isRisc0VerificationEnabled()) {
9999
bytes32 risc0JournalDigest = sha256(risc0JournalBytes);
100100
IRiscZeroVerifier(risc0VerifierAddress).verify(

0 commit comments

Comments
 (0)