pub struct ChannelCounterparty {
pub node_id: PublicKey,
pub features: InitFeatures,
pub unspendable_punishment_reserve: u64,
pub forwarding_info: Option<CounterpartyForwardingInfo>,
pub outbound_htlc_minimum_msat: Option<u64>,
pub outbound_htlc_maximum_msat: Option<u64>,
}Expand description
Channel parameters which apply to our counterparty. These are split out from ChannelDetails
to better separate parameters.
Fields§
§node_id: PublicKeyThe node_id of our counterparty
features: InitFeaturesThe Features the channel counterparty provided upon last connection. Useful for routing as it is the most up-to-date copy of the counterparty’s features and many routing-relevant features are present in the init context.
unspendable_punishment_reserve: u64The value, in satoshis, that must always be held in the channel for our counterparty. This value ensures that if our counterparty broadcasts a revoked state, we can punish them by claiming at least this value on chain.
This value is not included in inbound_capacity_msat as it can never be spent.
forwarding_info: Option<CounterpartyForwardingInfo>Information on the fees and requirements that the counterparty requires when forwarding payments to us through this channel.
outbound_htlc_minimum_msat: Option<u64>The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
is only None before we have received either the OpenChannel or AcceptChannel message
from the remote peer, or for ChannelCounterparty objects serialized prior to LDK 0.0.107.
outbound_htlc_maximum_msat: Option<u64>The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
Trait Implementations§
Source§impl Clone for ChannelCounterparty
impl Clone for ChannelCounterparty
Source§fn clone(&self) -> ChannelCounterparty
fn clone(&self) -> ChannelCounterparty
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more