Skip to content

Commit 626b0c8

Browse files
committed
f - fix comment
1 parent 8b397ce commit 626b0c8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fuzz/src/invoice_request_deser.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ use lightning::util::ser::Writeable;
2121

2222
#[inline]
2323
pub fn do_test<Out: test_logger::Output>(data: &[u8], _out: Out) {
24-
// Only check that de-serialization works; serialization simply copies the de-serialized bytes,
25-
// so no need to check the full round trip.
24+
// Serialization simply copies the de-serialized bytes, so no need to check the full round trip.
2625
if let Ok(invoice_request) = InvoiceRequest::try_from(data.to_vec()) {
2726
let mut bytes = Vec::with_capacity(data.len());
2827
invoice_request.write(&mut bytes).unwrap();

0 commit comments

Comments
 (0)