Skip to content

Commit

Permalink
fix sp1 aggregation verification error (#434)
Browse files Browse the repository at this point in the history
Signed-off-by: smtmfft <[email protected]>
  • Loading branch information
smtmfft authored Dec 12, 2024
1 parent e530f4f commit e368e2e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions provers/sp1/driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,9 @@ impl Prover for Sp1Prover {
block_inputs,
};
info!(
"Aggregating {:?} proofs with input: {aggregation_input:?}",
"Collect {:?} proofs aggregation pi inputs: {:?}",
input.proofs.len(),
aggregation_input.block_inputs
);

let mut stdin = SP1Stdin::new();
Expand Down Expand Up @@ -316,7 +317,7 @@ impl Prover for Sp1Prover {
let aggregation_pi = prove_result.clone().borrow_mut().public_values.raw();
let fixture = RaikoProofFixture {
vkey: vk.bytes32().to_string(),
public_values: reth_primitives::hex::encode_prefixed(aggregation_pi),
public_values: aggregation_pi,
proof: proof_bytes.clone(),
};

Expand Down

0 comments on commit e368e2e

Please sign in to comment.