Skip to content

Commit

Permalink
chore(clippy): fix linter on stable
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-roslaniec committed Aug 31, 2023
1 parent bb07377 commit 99632e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ferveo/src/pvss.rs
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ pub fn aggregate_for_decryption<E: Pairing>(
// We're assuming that in every PVSS instance, the shares are in the same order
.fold(first_share, |acc, shares| {
acc.into_iter()
.zip_eq(shares.into_iter())
.zip_eq(shares)
.map(|(a, b)| (a + b).into())
.collect()
})
Expand Down

0 comments on commit 99632e8

Please sign in to comment.