Skip to content

Commit 752a96c

Browse files
Merge branch 'testnet' into feat/dev-mode-flag-initialize
2 parents 295b7ce + d603f66 commit 752a96c

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
{
7676
(bytes32 merkleRoot) = abi.decode(sp1PublicValues, (bytes32));
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 (!IS_DEV_MODE) {
8080
ISP1Verifier(sp1VerifierAddress).verifyProof(sp1AggregatorProgramVKHash, sp1PublicValues, sp1ProofBytes);
8181
}
@@ -90,7 +90,7 @@ contract AlignedProofAggregationService is
9090
{
9191
(bytes32 merkleRoot) = abi.decode(risc0JournalBytes, (bytes32));
9292

93-
// In dev mode, poofs are mocked, so we skip the verification part
93+
// In dev mode, proofs are mocked, so we skip the verification part
9494
if (!IS_DEV_MODE) {
9595
bytes32 risc0JournalDigest = sha256(risc0JournalBytes);
9696
IRiscZeroVerifier(risc0VerifierAddress).verify(

0 commit comments

Comments
 (0)