X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fln%2Fmod.rs;h=adf54e8e256b4a60cad55bafcb3b5f5967afabfe;hb=f065a62d409b032b27692c05ebb4ade64bddaa65;hp=add8b4df1aa2e722dbac5ce577a840c74d2ff5a0;hpb=372a80308b662d6992d04f85b4a9a284d510f824;p=rust-lightning diff --git a/src/ln/mod.rs b/src/ln/mod.rs index add8b4df..adf54e8e 100644 --- a/src/ln/mod.rs +++ b/src/ln/mod.rs @@ -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; @@ -9,9 +20,9 @@ pub mod peer_channel_encryptor; #[cfg(not(feature = "fuzztarget"))] pub(crate) mod peer_channel_encryptor; -#[cfg(feature = "fuzztarget")] -pub mod channel; -#[cfg(not(feature = "fuzztarget"))] -pub(crate) mod channel; - +mod channel; mod chan_utils; +mod onion_utils; + +#[cfg(test)] +mod functional_tests;