Skip to content

Commit 6f80f99

Browse files
committed
Rename CommitmentTransaction::htlcs to nondust_htlcs
1 parent be4b851 commit 6f80f99

File tree

5 files changed

+35
-35
lines changed

5 files changed

+35
-35
lines changed

lightning/src/chain/channelmonitor.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -2980,8 +2980,8 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
29802980
// If we have non-dust HTLCs in htlc_outputs, ensure they match the HTLCs in the
29812981
// `holder_commitment_tx`. In the future, we'll no longer provide the redundant data
29822982
// and just pass in source data via `nondust_htlc_sources`.
2983-
debug_assert_eq!(htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).count(), holder_commitment_tx.trust().htlcs().len());
2984-
for (a, b) in htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).map(|(h, _, _)| h).zip(holder_commitment_tx.trust().htlcs().iter()) {
2983+
debug_assert_eq!(htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).count(), holder_commitment_tx.trust().nondust_htlcs().len());
2984+
for (a, b) in htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).map(|(h, _, _)| h).zip(holder_commitment_tx.trust().nondust_htlcs().iter()) {
29852985
debug_assert_eq!(a, b);
29862986
}
29872987
debug_assert_eq!(htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).count(), holder_commitment_tx.counterparty_htlc_sigs.len());
@@ -2995,18 +2995,18 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
29952995
// `nondust_htlc_sources` and the `holder_commitment_tx`
29962996
#[cfg(debug_assertions)] {
29972997
let mut prev = -1;
2998-
for htlc in holder_commitment_tx.trust().htlcs().iter() {
2998+
for htlc in holder_commitment_tx.trust().nondust_htlcs().iter() {
29992999
assert!(htlc.transaction_output_index.unwrap() as i32 > prev);
30003000
prev = htlc.transaction_output_index.unwrap() as i32;
30013001
}
30023002
}
30033003
debug_assert!(htlc_outputs.iter().all(|(htlc, _, _)| htlc.transaction_output_index.is_none()));
30043004
debug_assert!(htlc_outputs.iter().all(|(_, sig_opt, _)| sig_opt.is_none()));
3005-
debug_assert_eq!(holder_commitment_tx.trust().htlcs().len(), holder_commitment_tx.counterparty_htlc_sigs.len());
3005+
debug_assert_eq!(holder_commitment_tx.trust().nondust_htlcs().len(), holder_commitment_tx.counterparty_htlc_sigs.len());
30063006

30073007
let mut sources_iter = nondust_htlc_sources.into_iter();
30083008

3009-
for (htlc, counterparty_sig) in holder_commitment_tx.trust().htlcs().iter()
3009+
for (htlc, counterparty_sig) in holder_commitment_tx.trust().nondust_htlcs().iter()
30103010
.zip(holder_commitment_tx.counterparty_htlc_sigs.iter())
30113011
{
30123012
if htlc.offered {

lightning/src/chain/onchaintx.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ impl<ChannelSigner: EcdsaChannelSigner> OnchainTxHandler<ChannelSigner> {
12051205
if trusted_tx.txid() != outp.txid {
12061206
return None;
12071207
}
1208-
let (htlc_idx, htlc) = trusted_tx.htlcs().iter().enumerate()
1208+
let (htlc_idx, htlc) = trusted_tx.nondust_htlcs().iter().enumerate()
12091209
.find(|(_, htlc)| htlc.transaction_output_index.unwrap() == outp.vout)
12101210
.unwrap();
12111211
let counterparty_htlc_sig = holder_commitment.counterparty_htlc_sigs[htlc_idx];
@@ -1248,7 +1248,7 @@ impl<ChannelSigner: EcdsaChannelSigner> OnchainTxHandler<ChannelSigner> {
12481248
if outp.txid != trusted_tx.txid() {
12491249
return None;
12501250
}
1251-
trusted_tx.htlcs().iter().enumerate()
1251+
trusted_tx.nondust_htlcs().iter().enumerate()
12521252
.find(|(_, htlc)| if let Some(output_index) = htlc.transaction_output_index {
12531253
output_index == outp.vout
12541254
} else {

lightning/src/ln/chan_utils.rs

+17-17
Original file line numberDiff line numberDiff line change
@@ -1421,7 +1421,7 @@ pub struct CommitmentTransaction {
14211421
to_countersignatory_value_sat: Amount,
14221422
to_broadcaster_delay: Option<u16>, // Added in 0.0.117
14231423
feerate_per_kw: u32,
1424-
htlcs: Vec<HTLCOutputInCommitment>,
1424+
nondust_htlcs: Vec<HTLCOutputInCommitment>,
14251425
// Note that on upgrades, some features of existing outputs may be missed.
14261426
channel_type_features: ChannelTypeFeatures,
14271427
// A cache of the parties' pubkeys required to construct the transaction, see doc for trust()
@@ -1437,7 +1437,7 @@ impl PartialEq for CommitmentTransaction {
14371437
self.to_broadcaster_value_sat == o.to_broadcaster_value_sat &&
14381438
self.to_countersignatory_value_sat == o.to_countersignatory_value_sat &&
14391439
self.feerate_per_kw == o.feerate_per_kw &&
1440-
self.htlcs == o.htlcs &&
1440+
self.nondust_htlcs == o.nondust_htlcs &&
14411441
self.channel_type_features == o.channel_type_features &&
14421442
self.keys == o.keys;
14431443
if eq {
@@ -1459,7 +1459,7 @@ impl Writeable for CommitmentTransaction {
14591459
(6, self.feerate_per_kw, required),
14601460
(8, self.keys, required),
14611461
(10, self.built, required),
1462-
(12, self.htlcs, required_vec),
1462+
(12, self.nondust_htlcs, required_vec),
14631463
(14, legacy_deserialization_prevention_marker, option),
14641464
(15, self.channel_type_features, required),
14651465
});
@@ -1477,7 +1477,7 @@ impl Readable for CommitmentTransaction {
14771477
(6, feerate_per_kw, required),
14781478
(8, keys, required),
14791479
(10, built, required),
1480-
(12, htlcs, required_vec),
1480+
(12, nondust_htlcs, required_vec),
14811481
(14, _legacy_deserialization_prevention_marker, (option, explicit_type: ())),
14821482
(15, channel_type_features, option),
14831483
});
@@ -1494,7 +1494,7 @@ impl Readable for CommitmentTransaction {
14941494
feerate_per_kw: feerate_per_kw.0.unwrap(),
14951495
keys: keys.0.unwrap(),
14961496
built: built.0.unwrap(),
1497-
htlcs,
1497+
nondust_htlcs,
14981498
channel_type_features: channel_type_features.unwrap_or(ChannelTypeFeatures::only_static_remote_key())
14991499
})
15001500
}
@@ -1517,7 +1517,7 @@ impl CommitmentTransaction {
15171517
let keys = TxCreationKeys::from_channel_static_keys(per_commitment_point, channel_parameters.broadcaster_pubkeys(), channel_parameters.countersignatory_pubkeys(), secp_ctx);
15181518

15191519
// Sort outputs and populate output indices while keeping track of the auxiliary data
1520-
let (outputs, htlcs) = Self::internal_build_outputs(&keys, to_broadcaster_value_sat, to_countersignatory_value_sat, htlcs_with_aux, channel_parameters);
1520+
let (outputs, nondust_htlcs) = Self::internal_build_outputs(&keys, to_broadcaster_value_sat, to_countersignatory_value_sat, htlcs_with_aux, channel_parameters);
15211521

15221522
let (obscured_commitment_transaction_number, txins) = Self::internal_build_inputs(commitment_number, channel_parameters);
15231523
let transaction = Self::make_transaction(obscured_commitment_transaction_number, txins, outputs);
@@ -1528,7 +1528,7 @@ impl CommitmentTransaction {
15281528
to_countersignatory_value_sat,
15291529
to_broadcaster_delay: Some(channel_parameters.contest_delay()),
15301530
feerate_per_kw,
1531-
htlcs,
1531+
nondust_htlcs,
15321532
channel_type_features: channel_parameters.channel_type_features().clone(),
15331533
keys,
15341534
built: BuiltCommitmentTransaction {
@@ -1549,7 +1549,7 @@ impl CommitmentTransaction {
15491549
fn internal_rebuild_transaction(&self, keys: &TxCreationKeys, channel_parameters: &DirectedChannelTransactionParameters) -> BuiltCommitmentTransaction {
15501550
let (obscured_commitment_transaction_number, txins) = Self::internal_build_inputs(self.commitment_number, channel_parameters);
15511551

1552-
let mut htlcs_with_aux = self.htlcs.iter().map(|h| (h.clone(), ())).collect();
1552+
let mut htlcs_with_aux = self.nondust_htlcs.iter().map(|h| (h.clone(), ())).collect();
15531553
let (outputs, _) = Self::internal_build_outputs(keys, self.to_broadcaster_value_sat, self.to_countersignatory_value_sat, &mut htlcs_with_aux, channel_parameters);
15541554

15551555
let transaction = Self::make_transaction(obscured_commitment_transaction_number, txins, outputs);
@@ -1637,7 +1637,7 @@ impl CommitmentTransaction {
16371637
}
16381638
}
16391639

1640-
let mut htlcs = Vec::with_capacity(htlcs_with_aux.len());
1640+
let mut nondust_htlcs = Vec::with_capacity(htlcs_with_aux.len());
16411641
for (htlc, _) in htlcs_with_aux {
16421642
let script = get_htlc_redeemscript(htlc, channel_type, keys);
16431643
let txout = TxOut {
@@ -1667,11 +1667,11 @@ impl CommitmentTransaction {
16671667
for (idx, out) in txouts.drain(..).enumerate() {
16681668
if let Some(htlc) = out.1 {
16691669
htlc.transaction_output_index = Some(idx as u32);
1670-
htlcs.push(htlc.clone());
1670+
nondust_htlcs.push(htlc.clone());
16711671
}
16721672
outputs.push(out.0);
16731673
}
1674-
(outputs, htlcs)
1674+
(outputs, nondust_htlcs)
16751675
}
16761676

16771677
fn internal_build_inputs(commitment_number: u64, channel_parameters: &DirectedChannelTransactionParameters) -> (u64, Vec<TxIn>) {
@@ -1730,8 +1730,8 @@ impl CommitmentTransaction {
17301730
///
17311731
/// This is not exported to bindings users as we cannot currently convert Vec references to/from C, though we should
17321732
/// expose a less effecient version which creates a Vec of references in the future.
1733-
pub fn htlcs(&self) -> &Vec<HTLCOutputInCommitment> {
1734-
&self.htlcs
1733+
pub fn nondust_htlcs(&self) -> &Vec<HTLCOutputInCommitment> {
1734+
&self.nondust_htlcs
17351735
}
17361736

17371737
/// Trust our pre-built transaction and derived transaction creation public keys.
@@ -1815,10 +1815,10 @@ impl<'a> TrustedCommitmentTransaction<'a> {
18151815
let inner = self.inner;
18161816
let keys = &inner.keys;
18171817
let txid = inner.built.txid;
1818-
let mut ret = Vec::with_capacity(inner.htlcs.len());
1818+
let mut ret = Vec::with_capacity(inner.nondust_htlcs.len());
18191819
let holder_htlc_key = derive_private_key(secp_ctx, &inner.keys.per_commitment_point, htlc_base_key);
18201820

1821-
for this_htlc in inner.htlcs.iter() {
1821+
for this_htlc in inner.nondust_htlcs.iter() {
18221822
assert!(this_htlc.transaction_output_index.is_some());
18231823
let htlc_tx = build_htlc_transaction(&txid, inner.feerate_per_kw, channel_parameters.contest_delay(), &this_htlc, &self.channel_type_features, &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
18241824

@@ -1836,7 +1836,7 @@ impl<'a> TrustedCommitmentTransaction<'a> {
18361836
preimage: &Option<PaymentPreimage>,
18371837
) -> Transaction {
18381838
let keys = &self.inner.keys;
1839-
let this_htlc = &self.inner.htlcs[htlc_index];
1839+
let this_htlc = &self.inner.nondust_htlcs[htlc_index];
18401840
assert!(this_htlc.transaction_output_index.is_some());
18411841
// if we don't have preimage for an HTLC-Success, we can't generate an HTLC transaction.
18421842
if !this_htlc.offered && preimage.is_none() { unreachable!(); }
@@ -1858,7 +1858,7 @@ impl<'a> TrustedCommitmentTransaction<'a> {
18581858
) -> Witness {
18591859
let keys = &self.inner.keys;
18601860
let htlc_redeemscript = get_htlc_redeemscript_with_explicit_keys(
1861-
&self.inner.htlcs[htlc_index], &self.channel_type_features, &keys.broadcaster_htlc_key,
1861+
&self.inner.nondust_htlcs[htlc_index], &self.channel_type_features, &keys.broadcaster_htlc_key,
18621862
&keys.countersignatory_htlc_key, &keys.revocation_key
18631863
);
18641864
build_htlc_input_witness(

lightning/src/ln/channel.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -3613,8 +3613,8 @@ impl<SP: Deref> ChannelContext<SP> where SP::Target: SignerProvider {
36133613
}
36143614
}
36153615

3616-
if msg.htlc_signatures.len() != commitment_data.tx.htlcs().len() {
3617-
return Err(ChannelError::close(format!("Got wrong number of HTLC signatures ({}) from remote. It must be {}", msg.htlc_signatures.len(), commitment_data.tx.htlcs().len())));
3616+
if msg.htlc_signatures.len() != commitment_data.tx.nondust_htlcs().len() {
3617+
return Err(ChannelError::close(format!("Got wrong number of HTLC signatures ({}) from remote. It must be {}", msg.htlc_signatures.len(), commitment_data.tx.nondust_htlcs().len())));
36183618
}
36193619

36203620
// Up to LDK 0.0.115, HTLC information was required to be duplicated in the
@@ -6462,7 +6462,7 @@ impl<SP: Deref> FundedChannel<SP> where
64626462
let commitment_data = self.context.build_commitment_transaction(&self.funding,
64636463
self.holder_commitment_point.transaction_number(),
64646464
&self.holder_commitment_point.current_point(), true, true, logger);
6465-
let buffer_fee_msat = commit_tx_fee_sat(feerate_per_kw, commitment_data.tx.htlcs().len() + htlc_stats.on_holder_tx_outbound_holding_cell_htlcs_count as usize + CONCURRENT_INBOUND_HTLC_FEE_BUFFER as usize, self.context.get_channel_type()) * 1000;
6465+
let buffer_fee_msat = commit_tx_fee_sat(feerate_per_kw, commitment_data.tx.nondust_htlcs().len() + htlc_stats.on_holder_tx_outbound_holding_cell_htlcs_count as usize + CONCURRENT_INBOUND_HTLC_FEE_BUFFER as usize, self.context.get_channel_type()) * 1000;
64666466
let holder_balance_msat = commitment_data.stats.local_balance_before_fee_anchors_msat - htlc_stats.outbound_holding_cell_msat;
64676467
if holder_balance_msat < buffer_fee_msat + self.funding.counterparty_selected_channel_reserve_satoshis.unwrap() * 1000 {
64686468
//TODO: auto-close after a number of failures?
@@ -8864,7 +8864,7 @@ impl<SP: Deref> FundedChannel<SP> where
88648864
&& info.next_holder_htlc_id == self.context.next_holder_htlc_id
88658865
&& info.next_counterparty_htlc_id == self.context.next_counterparty_htlc_id
88668866
&& info.feerate == self.context.feerate_per_kw {
8867-
let actual_fee = commit_tx_fee_sat(self.context.feerate_per_kw, counterparty_commitment_tx.htlcs().len(), self.context.get_channel_type()) * 1000;
8867+
let actual_fee = commit_tx_fee_sat(self.context.feerate_per_kw, counterparty_commitment_tx.nondust_htlcs().len(), self.context.get_channel_type()) * 1000;
88688868
assert_eq!(actual_fee, info.fee);
88698869
}
88708870
}
@@ -8908,8 +8908,8 @@ impl<SP: Deref> FundedChannel<SP> where
89088908
log_bytes!(signature.serialize_compact()[..]), &self.context.channel_id());
89098909

89108910
let counterparty_keys = trusted_tx.keys();
8911-
debug_assert_eq!(htlc_signatures.len(), trusted_tx.htlcs().len());
8912-
for (ref htlc_sig, ref htlc) in htlc_signatures.iter().zip(trusted_tx.htlcs()) {
8911+
debug_assert_eq!(htlc_signatures.len(), trusted_tx.nondust_htlcs().len());
8912+
for (ref htlc_sig, ref htlc) in htlc_signatures.iter().zip(trusted_tx.nondust_htlcs()) {
89138913
log_trace!(logger, "Signed remote HTLC tx {} with redeemscript {} with pubkey {} -> {} in channel {}",
89148914
encode::serialize_hex(&chan_utils::build_htlc_transaction(&trusted_tx.txid(), trusted_tx.feerate_per_kw(), self.funding.get_holder_selected_contest_delay(), htlc, &self.context.channel_type, &counterparty_keys.broadcaster_delayed_payment_key, &counterparty_keys.revocation_key)),
89158915
encode::serialize_hex(&chan_utils::get_htlc_redeemscript(&htlc, &self.context.channel_type, &counterparty_keys)),
@@ -12036,10 +12036,10 @@ mod tests {
1203612036
counterparty_htlc_sigs.clear(); // Don't warn about excess mut for no-HTLC calls
1203712037
$({
1203812038
let remote_signature = Signature::from_der(&<Vec<u8>>::from_hex($counterparty_htlc_sig_hex).unwrap()[..]).unwrap();
12039-
per_htlc.push((commitment_tx.htlcs()[$htlc_idx].clone(), Some(remote_signature)));
12039+
per_htlc.push((commitment_tx.nondust_htlcs()[$htlc_idx].clone(), Some(remote_signature)));
1204012040
counterparty_htlc_sigs.push(remote_signature);
1204112041
})*
12042-
assert_eq!(commitment_tx.htlcs().len(), per_htlc.len());
12042+
assert_eq!(commitment_tx.nondust_htlcs().len(), per_htlc.len());
1204312043

1204412044
let holder_commitment_tx = HolderCommitmentTransaction::new(
1204512045
commitment_tx.clone(),
@@ -12062,7 +12062,7 @@ mod tests {
1206212062
log_trace!(logger, "verifying htlc {}", $htlc_idx);
1206312063
let remote_signature = Signature::from_der(&<Vec<u8>>::from_hex($counterparty_htlc_sig_hex).unwrap()[..]).unwrap();
1206412064

12065-
let ref htlc = commitment_tx.htlcs()[$htlc_idx];
12065+
let ref htlc = commitment_tx.nondust_htlcs()[$htlc_idx];
1206612066
let keys = commitment_tx.trust().keys();
1206712067
let mut htlc_tx = chan_utils::build_htlc_transaction(&unsigned_tx.txid, chan.context.feerate_per_kw,
1206812068
chan.funding.get_counterparty_selected_contest_delay().unwrap(),

lightning/src/sign/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1364,8 +1364,8 @@ impl EcdsaChannelSigner for InMemorySigner {
13641364
);
13651365
let commitment_txid = built_tx.txid;
13661366

1367-
let mut htlc_sigs = Vec::with_capacity(commitment_tx.htlcs().len());
1368-
for htlc in commitment_tx.htlcs() {
1367+
let mut htlc_sigs = Vec::with_capacity(commitment_tx.nondust_htlcs().len());
1368+
for htlc in commitment_tx.nondust_htlcs() {
13691369
let holder_selected_contest_delay = channel_parameters.holder_selected_contest_delay;
13701370
let chan_type = &channel_parameters.channel_type_features;
13711371
let htlc_tx = chan_utils::build_htlc_transaction(

0 commit comments

Comments
 (0)