Skip to content

Commit e12b0a0

Browse files
committed
f - fix comment
1 parent 14a58ec commit e12b0a0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fuzz/src/invoice_deser.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ use std::convert::TryFrom;
1414

1515
#[inline]
1616
pub fn do_test<Out: test_logger::Output>(data: &[u8], _out: Out) {
17-
// Only check that de-serialization works; serialization simply copies the de-serialized bytes,
18-
// so no need to check the full round trip.
17+
// Serialization simply copies the de-serialized bytes, so no need to check the full round trip.
1918
if let Ok(invoice) = Invoice::try_from(data.to_vec()) {
2019
let mut bytes = Vec::with_capacity(data.len());
2120
invoice.write(&mut bytes).unwrap();

0 commit comments

Comments
 (0)