Skip to content

Commit 96ed926

Browse files
committed
Compile contracts
1 parent b1596be commit 96ed926

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

contracts/src/core/AlignedProofAggregationService.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ contract AlignedProofAggregationService is
4747

4848
function verify(
4949
bytes32 blobVersionedHash,
50-
bytes32 sp1ProgramVKey,
51-
bytes calldata sp1PublicValues,
52-
bytes calldata sp1ProofBytes
50+
//bytes32 sp1ProgramVKey,
51+
bytes calldata sp1PublicValues
52+
//bytes calldata sp1ProofBytes
5353
) public onlyAlignedAggregator {
5454
// In dev mode, poofs are mocked, so we skip the verification part
5555
if (sp1VerifierAddress == VERIFIER_MOCK_ADDRESS) {

contracts/src/core/IAlignedProofAggregationService.sol

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ interface IAlignedProofAggregationService {
2525
/// @dev This function is called by the aligned proof aggregator after collecting the proofs and aggregating them
2626
/// to be verified on-chain. We expect the blobTransactionHash to be called before
2727
/// @param blobVersionedHash the versioned hash of the blob transaction that contains the leaves that compose the merkle root.
28-
/// @param sp1ProgramVKey Public verifying key
28+
/// param sp1ProgramVKey Public verifying key
2929
/// @param sp1PublicValues Values used to perform the execution
30-
/// @param sp1ProofBytes Groth16 proof
30+
/// param sp1ProofBytes Groth16 proof
3131
function verify(
3232
bytes32 blobVersionedHash,
33-
bytes32 sp1ProgramVKey,
34-
bytes calldata sp1PublicValues,
35-
bytes calldata sp1ProofBytes
33+
//bytes32 sp1ProgramVKey,
34+
bytes calldata sp1PublicValues
35+
//bytes calldata sp1ProofBytes
3636
) external;
3737

3838
function getAggregatedProof(uint64 proofNumber)

0 commit comments

Comments
 (0)