Require Init as first message, send our own Init for outbound
[rust-lightning] / src / ln / mod.rs
index 1f5fa460afbf7d71972da1b7ba3283b1d5e41340..7cd4272e13c1013e5e4abe1d38380aa0bd4e76dd 100644 (file)
@@ -1,9 +1,13 @@
 pub mod channelmanager;
-pub mod channel;
 pub mod channelmonitor;
 pub mod msgs;
 pub mod router;
 pub mod peer_channel_encryptor;
 pub mod peer_handler;
 
+#[cfg(feature = "fuzztarget")]
+pub mod channel;
+#[cfg(not(feature = "fuzztarget"))]
+pub(crate) mod channel;
+
 mod chan_utils;