We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b397ce commit 626b0c8Copy full SHA for 626b0c8
fuzz/src/invoice_request_deser.rs
@@ -21,8 +21,7 @@ use lightning::util::ser::Writeable;
21
22
#[inline]
23
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.
+ // Serialization simply copies the de-serialized bytes, so no need to check the full round trip.
26
if let Ok(invoice_request) = InvoiceRequest::try_from(data.to_vec()) {
27
let mut bytes = Vec::with_capacity(data.len());
28
invoice_request.write(&mut bytes).unwrap();
0 commit comments