Skip to content

Commit

Permalink
CI clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsoncusack committed Jan 15, 2024
1 parent 2fada34 commit 8edff5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cheatcodes/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ mod tests {
let result_bytes: [u8; 64] = result.try_into().unwrap();
let signature = Signature::from_bytes(&result_bytes.into()).unwrap();
let verifying_key = VerifyingKey::from(&signing_key);
assert!(verifying_key.verify_prehash(&digest.as_slice(), &signature).is_ok());
assert!(verifying_key.verify_prehash(digest.as_slice(), &signature).is_ok());
}

#[test]
Expand Down

0 comments on commit 8edff5c

Please sign in to comment.