X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fln%2Fmod.rs;h=adf54e8e256b4a60cad55bafcb3b5f5967afabfe;hb=608cf1c89db01f9cf612516a88a3f77f1f48bc52;hp=0f3b745443e378d5e53c77c26fc2f339a1693823;hpb=66fbc66da0c064e4ee271ad5a8e0a37410c80078;p=rust-lightning diff --git a/src/ln/mod.rs b/src/ln/mod.rs index 0f3b7454..adf54e8e 100644 --- a/src/ln/mod.rs +++ b/src/ln/mod.rs @@ -1,8 +1,10 @@ //! 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. @@ -20,3 +22,7 @@ pub(crate) mod peer_channel_encryptor; mod channel; mod chan_utils; +mod onion_utils; + +#[cfg(test)] +mod functional_tests;