X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=fuzz%2Fsrc%2Fmsg_targets%2Fmsg_reply_short_channel_ids_end.rs;h=dc765c76b19d5017983a0ae3ab8670a3fe61f5be;hb=1f399b0984d591019320459d804cbad859c608ae;hp=7634329a435a7d995aa3a52fd87e11744b8b6369;hpb=ad819ea70572b4775691e3fc386a788ff9438975;p=rust-lightning diff --git a/fuzz/src/msg_targets/msg_reply_short_channel_ids_end.rs b/fuzz/src/msg_targets/msg_reply_short_channel_ids_end.rs index 7634329a..dc765c76 100644 --- a/fuzz/src/msg_targets/msg_reply_short_channel_ids_end.rs +++ b/fuzz/src/msg_targets/msg_reply_short_channel_ids_end.rs @@ -10,18 +10,16 @@ // 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. -use lightning::ln::msgs; - -use msg_targets::utils::VecWriter; -use utils::test_logger; +use crate::msg_targets::utils::VecWriter; +use crate::utils::test_logger; #[inline] pub fn msg_reply_short_channel_ids_end_test(data: &[u8], _out: Out) { - test_msg_simple!(msgs::ReplyShortChannelIdsEnd, data); + test_msg_simple!(lightning::ln::msgs::ReplyShortChannelIdsEnd, data); } #[no_mangle] pub extern "C" fn msg_reply_short_channel_ids_end_run(data: *const u8, datalen: usize) { let data = unsafe { std::slice::from_raw_parts(data, datalen) }; - test_msg_simple!(msgs::ReplyShortChannelIdsEnd, data); + test_msg_simple!(lightning::ln::msgs::ReplyShortChannelIdsEnd, data); }