Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d720cd7

Browse files
committedApr 1, 2025·
fix: clippy
1 parent bc58d77 commit d720cd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/identity.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ impl Signature {
182182
let mut c_fr = Fr::from_le_bytes_mod_order(&c_fq.into_bigint().to_bytes_le());
183183

184184
// Multiply challenge scalar by cofactor
185-
c_fr = c_fr * Fr::from_be_bytes_mod_order(&[BabyJubjubConfig::COFACTOR[0] as u8]);
185+
c_fr *= Fr::from_be_bytes_mod_order(&[BabyJubjubConfig::COFACTOR[0] as u8]);
186186

187187
// s * generator
188188
let left = BabyJubjubConfig::GENERATOR.mul(self.s);

0 commit comments

Comments
 (0)
Please sign in to comment.