pub struct HTLCOutputInCommitment {
pub offered: bool,
pub amount_msat: u64,
pub cltv_expiry: u32,
pub payment_hash: PaymentHash,
pub transaction_output_index: Option<u32>,
}
Expand description
Information about an HTLC as it appears in a commitment transaction
Fields§
§offered: bool
Whether the HTLC was “offered” (ie outbound in relation to this commitment transaction). Note that this is not the same as whether it is ountbound from us. To determine that you need to compare this value to whether the commitment transaction in question is that of the counterparty or our own.
amount_msat: u64
The value, in msat, of the HTLC. The value as it appears in the commitment transaction is this divided by 1000.
cltv_expiry: u32
The CLTV lock-time at which this HTLC expires.
payment_hash: PaymentHash
The hash of the preimage which unlocks this HTLC.
transaction_output_index: Option<u32>
The position within the commitment transactions’ outputs. This may be None if the value is below the dust limit (in which case no output appears in the commitment transaction and the value is spent to additional transaction fees).
Implementations§
Source§impl HTLCOutputInCommitment
impl HTLCOutputInCommitment
Sourcepub const fn to_bitcoin_amount(&self) -> Amount
pub const fn to_bitcoin_amount(&self) -> Amount
Converts HTLC’s value with millisatoshi precision into bitcoin::Amount with satoshi precision. Typically this conversion is needed when transitioning from LN into base-layer Bitcoin, e. g. in commitment transactions.
Trait Implementations§
Source§impl Clone for HTLCOutputInCommitment
impl Clone for HTLCOutputInCommitment
Source§fn clone(&self) -> HTLCOutputInCommitment
fn clone(&self) -> HTLCOutputInCommitment
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more