Skip to content

Commit

Permalink
chore(sp1): remove the unneccessary
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 committed Oct 9, 2024
1 parent c55f162 commit 8df544b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions provers/sp1/driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ impl Prover for Sp1Prover {
.map_err(|e| ProverError::GuestError(format!("Failed to parse SP1 proof: {e}")))?;
match sp1_proof {
SP1Proof::Compressed(block_proof) => {
stdin.write_proof(block_proof.into(), stark_vk.clone());
stdin.write_proof(block_proof, stark_vk.clone());
}
_ => {
error!("unsupported proof type for aggregation: {sp1_proof:?}");
Expand Down Expand Up @@ -321,7 +321,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: reth_primitives::hex::encode_prefixed(aggregation_pi),
proof: reth_primitives::hex::encode_prefixed(&proof_bytes),
};

Expand Down

0 comments on commit 8df544b

Please sign in to comment.