Skip to content

Commit

Permalink
Remove unnecessary code comment
Browse files Browse the repository at this point in the history
These comments say what the code is doing, they add no value.
  • Loading branch information
tcharding committed Nov 14, 2023
1 parent fb280a3 commit e3daddd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ecdsa/serialized_signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,7 @@ mod tests {
#[test]
fn iterator_ops_are_homomorphic() {
let mut fake_signature_data = [0; MAX_LEN];
// fill it with numbers 0 - 71
for (i, byte) in fake_signature_data.iter_mut().enumerate() {
// up to MAX_LEN
*byte = i as u8;
}

Expand Down

0 comments on commit e3daddd

Please sign in to comment.