Skip to content

Commit

Permalink
style: typo update
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptonemo committed Oct 7, 2021
1 parent fe55ff8 commit 01aa48c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filecoin-proofs/src/api/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ pub fn verify_empty_sector_update_proof<Tree: 'static + MerkleTreeTrait<Hasher =
comm_d_new: Commitment,
sector_key_cache_path: &Path,
) -> Result<bool> {
info!("validate_empty_sector_update_proof:start");
info!("verify_empty_sector_update_proof:start");

let comm_r_old_safe = <TreeRHasher as Hasher>::Domain::try_from_bytes(&comm_r_old)?;
let comm_r_new_safe = <TreeRHasher as Hasher>::Domain::try_from_bytes(&comm_r_new)?;
Expand Down Expand Up @@ -610,7 +610,7 @@ pub fn verify_empty_sector_update_proof<Tree: 'static + MerkleTreeTrait<Hasher =
let valid =
EmptySectorUpdateCompound::verify(&pub_params_compound, &public_inputs, &multi_proof, &())?;

info!("validate_empty_sector_update_proof:finish");
info!("verify_empty_sector_update_proof:finish");

Ok(valid)
}

0 comments on commit 01aa48c

Please sign in to comment.