Skip to content

Commit

Permalink
Fixing clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminsavage committed Sep 25, 2023
1 parent 44c6282 commit a26da10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/protocol/prf_sharding/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -635,14 +635,14 @@ pub mod tests {
test_output(12, 7),
test_output(12, 4),
];
const NUM_SATURATING_SUM_BITS: usize = 5;
let num_saturating_bits: usize = 5;

let result: Vec<_> = world
.semi_honest(records.into_iter(), |ctx, input_rows| async move {
attribution_and_capping::<_, Gf5Bit, Gf3Bit>(
ctx,
input_rows,
NUM_SATURATING_SUM_BITS,
num_saturating_bits,
)
.await
.unwrap()
Expand Down

0 comments on commit a26da10

Please sign in to comment.