Skip to content

Commit 4244fec

Browse files
committed
Merge #666: Remove unnecessary code comment
4587122 Improve code comments (Tobin C. Harding) Pull request description: These comments say what the code is doing, they add no value. ACKs for top commit: Kixunil: ACK 4587122 apoelstra: ACK 4587122 Tree-SHA512: 0f31d36d7dfbde5bf32d622c3ba1845d5c6989c3eff0e520b77eeee595453299551172331851176e50aef4f78eacb7033c0ff798077e44e1c63313013b073f0b
2 parents fb280a3 + 4587122 commit 4244fec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ecdsa/serialized_signature.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,8 @@ mod tests {
272272
#[test]
273273
fn iterator_ops_are_homomorphic() {
274274
let mut fake_signature_data = [0; MAX_LEN];
275-
// fill it with numbers 0 - 71
276275
for (i, byte) in fake_signature_data.iter_mut().enumerate() {
277-
// up to MAX_LEN
278-
*byte = i as u8;
276+
*byte = i as u8; // cast ok because MAX_LEN fits in u8.
279277
}
280278

281279
let fake_signature = SerializedSignature { data: fake_signature_data, len: MAX_LEN };

0 commit comments

Comments
 (0)