Provide peer local_features to handle_open_channel/accept_channel
[rust-lightning] / src / ln / mod.rs
index fe4eeed8e7d49d8e4742b7a03d1bc4e4021cf906..9b1b442a9237ff1ff2ccfba7117904241c6a169c 100644 (file)
@@ -1,3 +1,14 @@
+//! High level lightning structs and impls live here.
+//!
+//! You probably want to create a channelmanager::ChannelManager, and a router::Router first.
+//! Then, you probably want to pass them both on to a peer_handler::PeerManager and use that to
+//! create/manage connections and call get_and_clear_pending_events after each action, handling
+//! them appropriately.
+//!
+//! When you want to open/close a channel or send a payment, call into your ChannelManager and when
+//! you want to learn things about the network topology (eg get a route for sending a payment),
+//! call into your Router.
+
 pub mod channelmanager;
 pub mod channelmonitor;
 pub mod msgs;
@@ -11,3 +22,11 @@ pub(crate) mod peer_channel_encryptor;
 
 mod channel;
 mod chan_utils;
+mod onion_utils;
+
+#[cfg(test)]
+#[macro_use] mod functional_test_utils;
+#[cfg(test)]
+mod functional_tests;
+#[cfg(test)]
+mod chanmon_update_fail_tests;