We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14a58ec commit e12b0a0Copy full SHA for e12b0a0
fuzz/src/invoice_deser.rs
@@ -14,8 +14,7 @@ use std::convert::TryFrom;
14
15
#[inline]
16
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.
+ // Serialization simply copies the de-serialized bytes, so no need to check the full round trip.
19
if let Ok(invoice) = Invoice::try_from(data.to_vec()) {
20
let mut bytes = Vec::with_capacity(data.len());
21
invoice.write(&mut bytes).unwrap();
0 commit comments