Skip to content

Commit 9c496fc

Browse files
committed
chore: fix sp1 USER_PROOFS_AGGREGATOR_PROGRAM_VK_HASH constant
1 parent 76741ca commit 9c496fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aggregation_mode/aggregation_programs/sp1/src/chunk_aggregator_main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use sp1_aggregation_program::{ChunkAggregatorInput, Hash32};
77

88
// Generated with `make agg_mode_write_program_ids` and copied from program_ids.json
99
pub const USER_PROOFS_AGGREGATOR_PROGRAM_VK_HASH: [u32; 8] = [
10-
1040333920, 1542570412, 411443120, 206151865, 190370181, 1775934843, 1568897572, 1219192306,
10+
684911098, 272834847, 1514192666, 1104122402, 1853418149, 488480116, 2005139814, 1901405498,
1111
];
1212

1313
pub fn main() {

aggregation_mode/scripts/build_programs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cargo run --release --bin write_program_image_id_vk_hash
44
# Copy the user proofs aggregator program ids and put them on the root aggregator
55
SP1_USER_PROOFS_AGGREGATOR_VK_HASH_WORDS=`jq -r .sp1_user_proofs_aggregator_vk_hash_words programs_ids.json`
66
SP1_LINE="pub const USER_PROOFS_AGGREGATOR_PROGRAM_VK_HASH: [u32; 8] = $SP1_USER_PROOFS_AGGREGATOR_VK_HASH_WORDS;\n"
7-
sed -i '' -e "/^pub const CHUNK_AGGREGATOR_PROGRAM_VK_HASH.*/{N;N;s|.*|$SP1_LINE|;}" aggregation_programs/sp1/src/chunk_aggregator_main.rs
7+
sed -i '' -e "/^pub const USER_PROOFS_AGGREGATOR_PROGRAM_VK_HASH.*/{N;N;s|.*|$SP1_LINE|;}" aggregation_programs/sp1/src/chunk_aggregator_main.rs
88

99
RISC0_USER_PROOFS_AGGREGATOR_IMAGE_ID_BYTES=`jq -r .risc0_user_proofs_aggregator_image_id_bytes programs_ids.json`
1010
RISC0_LINE="pub const USER_PROOFS_AGGREGATOR_PROGRAM_IMAGE_ID: [u8; 32] = $RISC0_USER_PROOFS_AGGREGATOR_IMAGE_ID_BYTES;\n"

0 commit comments

Comments
 (0)