X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-c-bindings%2Fsrc%2Fln%2Fmod.rs;fp=lightning-c-bindings%2Fsrc%2Fln%2Fmod.rs;h=0000000000000000000000000000000000000000;hb=d9866e870bbe080412dc70b1421e28a756e4407e;hp=d6ca8b38a7cd641f831bb679176bf1c83ba92a09;hpb=05fd5718232e2aa9581a51cdace2c0642ea533a5;p=ldk-c-bindings diff --git a/lightning-c-bindings/src/ln/mod.rs b/lightning-c-bindings/src/ln/mod.rs deleted file mode 100644 index d6ca8b3..0000000 --- a/lightning-c-bindings/src/ln/mod.rs +++ /dev/null @@ -1,28 +0,0 @@ -// This file is Copyright its original authors, visible in version control -// history and in the source files from which this was generated. -// -// This file is licensed under the license available in the LICENSE or LICENSE.md -// file in the root of this repository or, if no such file exists, the same -// license as that which applies to the original source files from which this -// source was automatically generated. - -//! High level lightning structs and impls live here. -//! -//! You probably want to create a channelmanager::ChannelManager, and a routing::NetGraphMsgHandler 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 NetGraphMsgHandler. - -use std::ffi::c_void; -use bitcoin::hashes::Hash; -use crate::c_types::*; - -pub mod channelmanager; -pub mod msgs; -pub mod peer_handler; -pub mod chan_utils; -pub mod features;