Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jasl committed Jul 13, 2024
1 parent e73513f commit 8d3100f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,7 @@ fn issue_approvals(
coalesce_approvals_len(options.coalesce_mean, options.coalesce_std_dev, rand_chacha);
let result = assignments
.iter()
.enumerate()
.map(|(_index, message)| match &message.msg {
.map(|message| match &message.msg {
protocol_v3::ApprovalDistributionMessage::Assignments(assignments) => {
let mut approvals_to_create = Vec::new();

Expand Down

0 comments on commit 8d3100f

Please sign in to comment.