Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Varlakov committed Dec 29, 2021
1 parent dcc2086 commit d9067bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benches/multi_party_ecdsa/gg18/keygen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ mod bench {
share_count: n,
};
let (t, n) = (t as usize, n as usize);
let party_keys_vec = (0..n).map(|i| Keys::create(i as u16)).collect::<Vec<Keys>>();
let party_keys_vec = (0..n)
.map(|i| Keys::create(i as u16))
.collect::<Vec<Keys>>();

let mut bc1_vec = Vec::new();
let mut decom_vec = Vec::new();
Expand Down

0 comments on commit d9067bd

Please sign in to comment.