Move features into a separate module out of msgs.
[rust-lightning] / lightning / src / ln / mod.rs
index 2b20e9908c7337c4455d750605450ed6d71fe0fd..369d2789302d2624f2a4f3bd84a6684a1705050a 100644 (file)
@@ -21,6 +21,11 @@ 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 onion_utils;