Add fuzz coverage of (potential) fee update messages
[rust-lightning] / lightning / src / ln / mod.rs
index f1ba914cabd81caeebce00f427fb0cd755504fca..5576d8bd057c84773c4e634b9fbe51f2af40028c 100644 (file)
@@ -27,13 +27,18 @@ pub mod msgs;
 pub mod peer_handler;
 pub mod chan_utils;
 pub mod features;
+pub mod script;
 
 #[cfg(feature = "fuzztarget")]
 pub mod peer_channel_encryptor;
 #[cfg(not(feature = "fuzztarget"))]
 pub(crate) mod peer_channel_encryptor;
 
+#[cfg(feature = "fuzztarget")]
+pub mod channel;
+#[cfg(not(feature = "fuzztarget"))]
 mod channel;
+
 mod onion_utils;
 mod wire;