Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contracts/src/core/AlignedProofAggregationService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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);
}
Expand All @@ -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(
Expand Down
Loading