Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashtare committed Aug 26, 2024
1 parent 77b7cc9 commit 5b3c5a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proof_gen/src/proof_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//! generation process.
use evm_arithmetization::{
fixed_recursive_verifier::{extract_block_public_values, extract_two_to_one_block_hash},
fixed_recursive_verifier::{extract_block_final_public_values, extract_two_to_one_block_hash},
proof::PublicValues,
BlockHeight,
};
Expand Down Expand Up @@ -187,7 +187,7 @@ impl AggregatableBlockProof {
pub fn pv_hash(&self) -> Hash {
match self {
AggregatableBlockProof::Block(info) => {
let pv = extract_block_public_values(&info.intern.public_inputs);
let pv = extract_block_final_public_values(&info.intern.public_inputs);
Hasher::hash_no_pad(pv)
}
AggregatableBlockProof::Agg(info) => {
Expand Down

0 comments on commit 5b3c5a5

Please sign in to comment.