Skip to content

Commit

Permalink
fix clippy error - remove return
Browse files Browse the repository at this point in the history
  • Loading branch information
eaypek-tfh committed Aug 22, 2024
1 parent f3911c5 commit 728276f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iris-mpc-common/src/bin/e2e_input_transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fn get_share_strings(shares_iris_code_left: &[GaloisRingIrisCodeShare; 3]) -> [S
shares[i] =
general_purpose::STANDARD.encode(bytemuck::cast_slice(&shares_iris_code_left[i].coefs));
}
return shares;
shares
}

fn read_json_file(file_path: &str) -> serde_json::Result<Vec<Signup>> {
Expand Down

0 comments on commit 728276f

Please sign in to comment.