Skip to content

Commit aceefe1

Browse files
Apply suggestions from code review
Co-authored-by: Marcos Nicolau <[email protected]>
1 parent ba099a5 commit aceefe1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

aggregation_mode/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ If the program ids have changed, you will also need to add the updated one to th
8080

8181
You can fetch the program ID values from the following:
8282

83-
- Risc0: Use the value of `risc0_root_aggregator_image_id` from `aggregation_mode/program_ids.json`.
84-
- SP1: Use the value of `sp1_root_aggregator_vk_hash` from `aggregation_mode/program_ids.json`.
83+
- Risc0: Use the value of `risc0_chunk_aggregator_image_id` from `aggregation_mode/program_ids.json`.
84+
- SP1: Use the value of `sp1_chunk_aggregator_vk_hash` from `aggregation_mode/program_ids.json`.

contracts/src/core/AlignedProofAggregationService.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ contract AlignedProofAggregationService is
3737
/// if the sp1 verifier address is set to this address, then we skip verification
3838
address public constant VERIFIER_MOCK_ADDRESS = address(0xFF);
3939

40-
/// @notice A mapping to track valid program IDs (image IDs for RISC Zero or vk hashes for SP1)
41-
/// to their corresponding verifier types. These program IDs are used to ensure that proofs are
42-
/// verified against known and registered programs.
40+
/// @notice A map to track aggregation program IDs (image IDs for RISC Zero or vk hashes for SP1)
41+
/// with their proving system. These program IDs are used to validate that the proofs to verify are indeed from
42+
/// a trusted aggregation program.
4343
mapping(bytes32 => uint8) public programIds;
4444

4545
constructor() {

0 commit comments

Comments
 (0)