Fix bug in early-HTLC-fulfill handling
[rust-lightning] / fuzz / fuzz_targets / msg_targets / msg_funding_signed_target.rs
index 3c47938257d618a1c094b4f62b5825ebbffa912d..a92e2fabb75348cbc0f2f85d1964c59444782cc9 100644 (file)
@@ -1,3 +1,6 @@
+// This file is auto-generated by gen_target.sh based on msg_target_template.txt
+// To modify it, modify msg_target_template.txt and run gen_target.sh instead.
+
 extern crate lightning;
 
 use lightning::ln::msgs;
@@ -6,15 +9,11 @@ use lightning::util::reset_rng_state;
 use lightning::ln::msgs::{MsgEncodable, MsgDecodable};
 
 mod utils;
-use utils::slice_to_be16;
 
 #[inline]
 pub fn do_test(data: &[u8]) {
        reset_rng_state();
-       let mut read_pos = 0;
-       loop {
-               test_msg!(msgs::FundingSigned, data, read_pos);
-       }
+       test_msg!(msgs::FundingSigned, data);
 }
 
 #[cfg(feature = "afl")]
@@ -37,13 +36,11 @@ fn main() {
        }
 }
 
+extern crate hex;
 #[cfg(test)]
 mod tests {
-       use utils::extend_vec_from_hex;
        #[test]
        fn duplicate_crash() {
-               let mut a = Vec::new();
-               extend_vec_from_hex("00", &mut a);
-               super::do_test(&a);
+               super::do_test(&::hex::decode("00").unwrap());
        }
 }