Skip to content

Commit

Permalink
remove an unneeded as
Browse files Browse the repository at this point in the history
  • Loading branch information
fjarri committed Oct 10, 2022
1 parent fff3f29 commit 0c5015e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ fn sign(cli: SignCli) -> anyhow::Result<()> {
let mut sign_parties = SignParties::with_max_size(party_share_counts.party_count());
for i in &cli.parties {
sign_parties
.add(TypedUsize::from_usize(*i as usize))
.add(TypedUsize::from_usize(*i))
.unwrap();
}
sign_parties
Expand Down

0 comments on commit 0c5015e

Please sign in to comment.