Struct lightning::ln::channelmanager::ChannelManager[][src]

pub struct ChannelManager { /* fields omitted */ }

Manager which keeps track of a number of channels and sends messages to the appropriate channel, also tracking HTLC preimages and forwarding onion packets appropriately. Implements ChannelMessageHandler, handling the multi-channel parts and passing things through to individual Channels.

Methods

impl ChannelManager
[src]

Constructs a new ChannelManager to hold several channels and route between them. This is the main "logic hub" for all channel-related actions, and implements ChannelMessageHandler. fee_proportional_millionths is an optional fee to charge any payments routed through us. Non-proportional fees are fixed according to our risk using the provided fee estimator. panics if channel_value_satoshis is >= MAX_FUNDING_SATOSHIS!

Creates a new outbound channel to the given remote node and with the given value. user_id will be provided back as user_channel_id in FundingGenerationReady and FundingBroadcastSafe events to allow tracking of which events correspond with which create_channel call. Note that user_channel_id defaults to 0 for inbound channels, so you may wish to avoid using 0 for user_id here. If successful, will generate a SendOpenChannel event, so you should probably poll PeerManager::process_events afterwards. Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat being greater than channel_value_satoshis * 1k

Important traits for Vec<u8>

Gets the list of open channels, in random order. See ChannelDetail field documentation for more information.

Important traits for Vec<u8>

Gets the list of usable channels, in random order. Useful as an argument to Router::get_route to ensure non-announced channels are used.

Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs will be accepted on the given channel, and after additional timeout/the closing of all pending HTLCs, the channel will be closed on chain. May generate a SendShutdown event on success, which should be relayed.

Force closes a channel, immediately broadcasting the latest local commitment transaction to the chain and rejecting new HTLCs on the given channel.

Force close all channels, immediately broadcasting the latest local commitment transaction for each to the chain and rejecting new HTLCs on each.

Sends a payment along a given route. Value parameters are provided via the last hop in route, see documentation for RouteHop fields for more info. Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative payment), we don't do anything to stop you! We always try to ensure that if the provided next hop knows the preimage to payment_hash they can claim an additional amount as specified in the last hop in the route! Thus, you should probably do your own payment_preimage tracking (which you should already be doing as they represent "proof of payment") and prevent double-sends yourself. See-also docs on Channel::send_htlc_and_commit. May generate a SendHTLCs event on success, which should be relayed. Raises APIError::RoutError when invalid route or forward parameter (cltv_delta, fee, node public key) is specified

Call this upon creation of a funding transaction for the given channel. Panics if a funding transaction has already been provided for this channel. May panic if the funding_txo is duplicative with some other channel (note that this should be trivially prevented by using unique funding transaction keys per-channel).

Processes HTLCs which are pending waiting on random forward delay. Should only really ever be called in response to an PendingHTLCsForwardable event. Will likely generate further events.

Indicates that the preimage for payment_hash is unknown after a PaymentReceived event.

Provides a payment preimage in response to a PaymentReceived event, returning true and generating message events for the net layer to claim the payment, if possible. Thus, you should probably kick the net layer to go send messages if this returns true! May panic if called except in response to a PaymentReceived event.

Gets the node_id held by this ChannelManager

Used to restore channels to normal operation after a ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update operation.

Trait Implementations

impl EventsProvider for ChannelManager
[src]

Important traits for Vec<u8>

Gets the list of pending events which were generated by previous actions, clearing the list in the process. Read more

impl ChainListener for ChannelManager
[src]

Notifies a listener that a block was connected. Note that if a new transaction/outpoint is watched during a block_connected call, the block must be re-scanned with the new transaction/outpoints and block_connected should be called again with the same header and (at least) the new transactions. Note that if non-new transaction/outpoints may be registered during a call, a second call must not happen. This also means those counting confirmations using block_connected callbacks should watch for duplicate headers and not count them towards confirmations! Read more

We force-close the channel without letting our counterparty participate in the shutdown

impl ChannelMessageHandler for ChannelManager
[src]

Handle an incoming open_channel message from the given peer.

Handle an incoming accept_channel message from the given peer.

Handle an incoming funding_created message from the given peer.

Handle an incoming funding_signed message from the given peer.

Handle an incoming funding_locked message from the given peer.

Handle an incoming shutdown message from the given peer.

Handle an incoming closing_signed message from the given peer.

Handle an incoming update_add_htlc message from the given peer.

Handle an incoming update_fulfill_htlc message from the given peer.

Handle an incoming update_fail_htlc message from the given peer.

Handle an incoming update_fail_malformed_htlc message from the given peer.

Handle an incoming commitment_signed message from the given peer.

Handle an incoming revoke_and_ack message from the given peer.

Handle an incoming update_fee message from the given peer.

Handle an incoming announcement_signatures message from the given peer.

Handle an incoming channel_reestablish message from the given peer.

Indicates a connection to the peer failed/an existing connection was lost. If no connection is believed to be possible in the future (eg they're sending us messages we don't understand or indicate they require unknown feature bits), no_connection_possible is set and any outstanding channels should be failed. Read more

Important traits for Vec<u8>

Handle a peer reconnecting, possibly generating channel_reestablish message(s).

Handle an incoming error message from the given peer.

Auto Trait Implementations