Merge pull request #1025 from TheBlueMatt/2021-07-detect-htlcs-on-local-commitment
[rust-lightning] / lightning / src / ln / mod.rs
index 7500b93c0050400ae1bba70dd78a819336a5afbd..bebd763f660b83569ac7e1c1eff93770d7696b12 100644 (file)
@@ -27,6 +27,7 @@ pub mod msgs;
 pub mod peer_handler;
 pub mod chan_utils;
 pub mod features;
+pub mod script;
 
 #[cfg(feature = "fuzztarget")]
 pub mod peer_channel_encryptor;
@@ -52,6 +53,9 @@ mod reorg_tests;
 #[cfg(test)]
 #[allow(unused_mut)]
 mod onion_route_tests;
+#[cfg(test)]
+#[allow(unused_mut)]
+mod monitor_tests;
 
 pub use self::peer_channel_encryptor::LN_MAX_MSG_LEN;