diff --git a/contracts/src/core/AlignedProofAggregationService.sol b/contracts/src/core/AlignedProofAggregationService.sol index 5647e6c35a..2782c61745 100644 --- a/contracts/src/core/AlignedProofAggregationService.sol +++ b/contracts/src/core/AlignedProofAggregationService.sol @@ -22,7 +22,7 @@ contract AlignedProofAggregationService is /// @dev This can either be a specific SP1Verifier for a specific version, or the /// SP1VerifierGateway which can be used to verify proofs for any version of SP1. /// For the list of supported verifiers on each chain, see: - /// https://docs.succinct.xyz/onchain-verification/contract-addresses + /// https://docs.succinct.xyz/docs/sp1/verification/contract-addresses address public sp1VerifierAddress; /// @notice The address of the Wallet that is allowed to call the verify function. @@ -73,7 +73,7 @@ contract AlignedProofAggregationService is { (bytes32 merkleRoot) = abi.decode(sp1PublicValues, (bytes32)); - // In dev mode, poofs are mocked, so we skip the verification part + // In dev mode, proofs are mocked, so we skip the verification part if (_isSP1VerificationEnabled()) { ISP1Verifier(sp1VerifierAddress).verifyProof(sp1AggregatorProgramVKHash, sp1PublicValues, sp1ProofBytes); } @@ -88,7 +88,7 @@ contract AlignedProofAggregationService is { (bytes32 merkleRoot) = abi.decode(risc0JournalBytes, (bytes32)); - // In dev mode, poofs are mocked, so we skip the verification part + // In dev mode, proofs are mocked, so we skip the verification part if (_isRisc0VerificationEnabled()) { bytes32 risc0JournalDigest = sha256(risc0JournalBytes); IRiscZeroVerifier(risc0VerifierAddress).verify(