Make Readable::read a templated on the stream, not Readable itself
[rust-lightning] / lightning / src / ln / mod.rs
index 93043111eef27c92d1939bd13227a253f4f20dc8..4cb1b89cc53bced2e3003d7a16fdd77e1819e278 100644 (file)
@@ -24,10 +24,14 @@ pub(crate) mod peer_channel_encryptor;
 
 mod channel;
 mod onion_utils;
+mod wire;
 
 #[cfg(test)]
-#[macro_use] mod functional_test_utils;
+#[macro_use]
+pub(crate) mod functional_test_utils;
 #[cfg(test)]
 mod functional_tests;
 #[cfg(test)]
 mod chanmon_update_fail_tests;
+#[cfg(test)]
+mod reorg_tests;