You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit defines the `TxBuilder` trait to give users the ability to
customize the build of the lightning commitment transactions.
The `TxBuilder` trait has a single method,
`build_commitment_transaction`, which builds the commitment transaction,
and populates the output indices of the HTLCs passed in.
Besides that, it is mostly a copy paste of chunks of code from
`ChannelContext::build_commitment_transaction`.
let htlc_tx_fee = if self.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
3545
-
0
3546
-
} else {
3547
-
feerate_per_kw as u64 * htlc_timeout_tx_weight(self.get_channel_type()) / 1000
3548
-
};
3549
-
if htlc.amount_msat / 1000 >= broadcaster_dust_limit_satoshis + htlc_tx_fee {
3550
-
log_trace!(logger, " ...creating output for {} non-dust HTLC (hash {}) with value {}", if outbound { "outbound" } else { "inbound" }, htlc.payment_hash, htlc.amount_msat);
3551
-
included_non_dust_htlcs.push(htlc);
3552
-
} else {
3553
-
log_trace!(logger, " ...trimming {} HTLC (hash {}) with value {} due to dust limit", if outbound { "outbound" } else { "inbound" }, htlc.payment_hash, htlc.amount_msat);
3554
-
}
3555
-
} else {
3556
-
let outbound = !local;
3557
-
if outbound {
3558
-
local_htlc_total_msat += htlc.amount_msat;
3559
-
} else {
3560
-
remote_htlc_total_msat += htlc.amount_msat;
3561
-
}
3562
-
let htlc_tx_fee = if self.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
3563
-
0
3564
-
} else {
3565
-
feerate_per_kw as u64 * htlc_success_tx_weight(self.get_channel_type()) / 1000
3566
-
};
3567
-
if htlc.amount_msat / 1000 >= broadcaster_dust_limit_satoshis + htlc_tx_fee {
3568
-
log_trace!(logger, " ...creating output for {} non-dust HTLC (hash {}) with value {}", if outbound { "outbound" } else { "inbound" }, htlc.payment_hash, htlc.amount_msat);
3569
-
included_non_dust_htlcs.push(htlc);
3570
-
} else {
3571
-
log_trace!(logger, " ...trimming {} HTLC (hash {}) with value {} due to dust limit", if outbound { "outbound" } else { "inbound" }, htlc.payment_hash, htlc.amount_msat);
3572
-
}
3573
-
}
3574
-
}
3575
-
3576
3528
// TODO: When MSRV >= 1.66.0, use u64::checked_add_signed
3577
-
let mut value_to_self_msat = u64::try_from(funding.value_to_self_msat as i64 + value_to_self_msat_offset).unwrap();
3578
-
// Note that in case they have several just-awaiting-last-RAA fulfills in-progress (ie
3579
-
// AwaitingRemoteRevokeToRemove or AwaitingRemovedRemoteRevoke) we may have allowed them to
3580
-
// "violate" their reserve value by couting those against it. Thus, we have to do checked subtraction
3581
-
// as otherwise we can overflow.
3582
-
let mut value_to_remote_msat = u64::checked_sub(funding.channel_value_satoshis * 1000, value_to_self_msat).unwrap();
0 commit comments