Move features into a separate module out of msgs.
[rust-lightning] / lightning / src / ln / mod.rs
index 9b1b442a9237ff1ff2ccfba7117904241c6a169c..369d2789302d2624f2a4f3bd84a6684a1705050a 100644 (file)
@@ -14,14 +14,19 @@ pub mod channelmonitor;
 pub mod msgs;
 pub mod router;
 pub mod peer_handler;
+pub mod chan_utils;
 
 #[cfg(feature = "fuzztarget")]
 pub mod peer_channel_encryptor;
 #[cfg(not(feature = "fuzztarget"))]
 pub(crate) mod peer_channel_encryptor;
 
+#[cfg(feature = "fuzztarget")]
+pub mod features;
+#[cfg(not(feature = "fuzztarget"))]
+pub(crate) mod features;
+
 mod channel;
-mod chan_utils;
 mod onion_utils;
 
 #[cfg(test)]