Skip to content

Commit

Permalink
fix: spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
gluax committed Aug 15, 2024
1 parent c53b13c commit fe04866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/crypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ lazy_static::lazy_static! {
}

pub fn verify_proof(public_key: &[u8], proof: &[u8], hash: Hash) -> Result<()> {
let verifed = VRF.verify(public_key, proof, &hash);
let verified = VRF.verify(public_key, proof, &hash);

// If we don't get an error it's always ok
verifed?;
verified?;

Ok(())
}
Expand Down

0 comments on commit fe04866

Please sign in to comment.