Move router to a separate module
[rust-lightning] / lightning / src / ln / mod.rs
index 14864ddb53b1496b430b70e8adef530ec145ef91..33f1c5bc1cfb019eb9937b12b5b22502f7dee56a 100644 (file)
 pub mod channelmanager;
 pub mod channelmonitor;
 pub mod msgs;
-pub mod router;
 pub mod peer_handler;
 pub mod chan_utils;
 pub mod features;
+pub(crate) mod onchaintx;
 
 #[cfg(feature = "fuzztarget")]
 pub mod peer_channel_encryptor;
@@ -33,3 +33,5 @@ pub(crate) mod functional_test_utils;
 mod functional_tests;
 #[cfg(test)]
 mod chanmon_update_fail_tests;
+#[cfg(test)]
+mod reorg_tests;