Skip to content

Commit

Permalink
Make cargo clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
lgiussan committed Sep 19, 2024
1 parent c47e149 commit 1c1123c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/verification_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl VerificationKey {
/// Converts the verification key into a byte array.
pub fn into_bytes(&self) -> Vec<u8> {
let mut buf = Vec::new();
VerificationKey::serialize_compressed(&self, &mut buf).unwrap();
self.serialize_compressed(&mut buf).unwrap();
buf
}

Expand Down

0 comments on commit 1c1123c

Please sign in to comment.