X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=fuzz%2Fsrc%2Fmsg_targets%2Fmsg_query_short_channel_ids.rs;h=f536c7f4f360bca71ad360189f465efd8d161db2;hb=2eb93f466410ec2e6fd583b9c8c6f372a3b147e4;hp=99cde111751b3a22fd76ac4b8ec9ecfdc194df27;hpb=10e818ac5329a3ff8229e7e76e6c0f7a356678ba;p=rust-lightning diff --git a/fuzz/src/msg_targets/msg_query_short_channel_ids.rs b/fuzz/src/msg_targets/msg_query_short_channel_ids.rs index 99cde111..f536c7f4 100644 --- a/fuzz/src/msg_targets/msg_query_short_channel_ids.rs +++ b/fuzz/src/msg_targets/msg_query_short_channel_ids.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; #[inline] pub fn msg_query_short_channel_ids_test(data: &[u8], _out: Out) { - test_msg!(msgs::QueryShortChannelIds, data); + test_msg!(lightning::ln::msgs::QueryShortChannelIds, data); } #[no_mangle] pub extern "C" fn msg_query_short_channel_ids_run(data: *const u8, datalen: usize) { let data = unsafe { std::slice::from_raw_parts(data, datalen) }; - test_msg!(msgs::QueryShortChannelIds, data); + test_msg!(lightning::ln::msgs::QueryShortChannelIds, data); }