@@ -1421,7 +1421,7 @@ pub struct CommitmentTransaction {
1421
1421
to_countersignatory_value_sat : Amount ,
1422
1422
to_broadcaster_delay : Option < u16 > , // Added in 0.0.117
1423
1423
feerate_per_kw : u32 ,
1424
- htlcs : Vec < HTLCOutputInCommitment > ,
1424
+ nondust_htlcs : Vec < HTLCOutputInCommitment > ,
1425
1425
// Note that on upgrades, some features of existing outputs may be missed.
1426
1426
channel_type_features : ChannelTypeFeatures ,
1427
1427
// A cache of the parties' pubkeys required to construct the transaction, see doc for trust()
@@ -1437,7 +1437,7 @@ impl PartialEq for CommitmentTransaction {
1437
1437
self . to_broadcaster_value_sat == o. to_broadcaster_value_sat &&
1438
1438
self . to_countersignatory_value_sat == o. to_countersignatory_value_sat &&
1439
1439
self . feerate_per_kw == o. feerate_per_kw &&
1440
- self . htlcs == o. htlcs &&
1440
+ self . nondust_htlcs == o. nondust_htlcs &&
1441
1441
self . channel_type_features == o. channel_type_features &&
1442
1442
self . keys == o. keys ;
1443
1443
if eq {
@@ -1459,7 +1459,7 @@ impl Writeable for CommitmentTransaction {
1459
1459
( 6 , self . feerate_per_kw, required) ,
1460
1460
( 8 , self . keys, required) ,
1461
1461
( 10 , self . built, required) ,
1462
- ( 12 , self . htlcs , required_vec) ,
1462
+ ( 12 , self . nondust_htlcs , required_vec) ,
1463
1463
( 14 , legacy_deserialization_prevention_marker, option) ,
1464
1464
( 15 , self . channel_type_features, required) ,
1465
1465
} ) ;
@@ -1477,7 +1477,7 @@ impl Readable for CommitmentTransaction {
1477
1477
( 6 , feerate_per_kw, required) ,
1478
1478
( 8 , keys, required) ,
1479
1479
( 10 , built, required) ,
1480
- ( 12 , htlcs , required_vec) ,
1480
+ ( 12 , nondust_htlcs , required_vec) ,
1481
1481
( 14 , _legacy_deserialization_prevention_marker, ( option, explicit_type: ( ) ) ) ,
1482
1482
( 15 , channel_type_features, option) ,
1483
1483
} ) ;
@@ -1494,7 +1494,7 @@ impl Readable for CommitmentTransaction {
1494
1494
feerate_per_kw : feerate_per_kw. 0 . unwrap ( ) ,
1495
1495
keys : keys. 0 . unwrap ( ) ,
1496
1496
built : built. 0 . unwrap ( ) ,
1497
- htlcs ,
1497
+ nondust_htlcs ,
1498
1498
channel_type_features : channel_type_features. unwrap_or ( ChannelTypeFeatures :: only_static_remote_key ( ) )
1499
1499
} )
1500
1500
}
@@ -1517,7 +1517,7 @@ impl CommitmentTransaction {
1517
1517
let keys = TxCreationKeys :: from_channel_static_keys ( per_commitment_point, channel_parameters. broadcaster_pubkeys ( ) , channel_parameters. countersignatory_pubkeys ( ) , secp_ctx) ;
1518
1518
1519
1519
// 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) ;
1521
1521
1522
1522
let ( obscured_commitment_transaction_number, txins) = Self :: internal_build_inputs ( commitment_number, channel_parameters) ;
1523
1523
let transaction = Self :: make_transaction ( obscured_commitment_transaction_number, txins, outputs) ;
@@ -1528,7 +1528,7 @@ impl CommitmentTransaction {
1528
1528
to_countersignatory_value_sat,
1529
1529
to_broadcaster_delay : Some ( channel_parameters. contest_delay ( ) ) ,
1530
1530
feerate_per_kw,
1531
- htlcs ,
1531
+ nondust_htlcs ,
1532
1532
channel_type_features : channel_parameters. channel_type_features ( ) . clone ( ) ,
1533
1533
keys,
1534
1534
built : BuiltCommitmentTransaction {
@@ -1549,7 +1549,7 @@ impl CommitmentTransaction {
1549
1549
fn internal_rebuild_transaction ( & self , keys : & TxCreationKeys , channel_parameters : & DirectedChannelTransactionParameters ) -> BuiltCommitmentTransaction {
1550
1550
let ( obscured_commitment_transaction_number, txins) = Self :: internal_build_inputs ( self . commitment_number , channel_parameters) ;
1551
1551
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 ( ) ;
1553
1553
let ( outputs, _) = Self :: internal_build_outputs ( keys, self . to_broadcaster_value_sat , self . to_countersignatory_value_sat , & mut htlcs_with_aux, channel_parameters) ;
1554
1554
1555
1555
let transaction = Self :: make_transaction ( obscured_commitment_transaction_number, txins, outputs) ;
@@ -1637,7 +1637,7 @@ impl CommitmentTransaction {
1637
1637
}
1638
1638
}
1639
1639
1640
- let mut htlcs = Vec :: with_capacity ( htlcs_with_aux. len ( ) ) ;
1640
+ let mut nondust_htlcs = Vec :: with_capacity ( htlcs_with_aux. len ( ) ) ;
1641
1641
for ( htlc, _) in htlcs_with_aux {
1642
1642
let script = get_htlc_redeemscript ( htlc, channel_type, keys) ;
1643
1643
let txout = TxOut {
@@ -1667,11 +1667,11 @@ impl CommitmentTransaction {
1667
1667
for ( idx, out) in txouts. drain ( ..) . enumerate ( ) {
1668
1668
if let Some ( htlc) = out. 1 {
1669
1669
htlc. transaction_output_index = Some ( idx as u32 ) ;
1670
- htlcs . push ( htlc. clone ( ) ) ;
1670
+ nondust_htlcs . push ( htlc. clone ( ) ) ;
1671
1671
}
1672
1672
outputs. push ( out. 0 ) ;
1673
1673
}
1674
- ( outputs, htlcs )
1674
+ ( outputs, nondust_htlcs )
1675
1675
}
1676
1676
1677
1677
fn internal_build_inputs ( commitment_number : u64 , channel_parameters : & DirectedChannelTransactionParameters ) -> ( u64 , Vec < TxIn > ) {
@@ -1730,8 +1730,8 @@ impl CommitmentTransaction {
1730
1730
///
1731
1731
/// This is not exported to bindings users as we cannot currently convert Vec references to/from C, though we should
1732
1732
/// 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
1735
1735
}
1736
1736
1737
1737
/// Trust our pre-built transaction and derived transaction creation public keys.
@@ -1815,10 +1815,10 @@ impl<'a> TrustedCommitmentTransaction<'a> {
1815
1815
let inner = self . inner ;
1816
1816
let keys = & inner. keys ;
1817
1817
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 ( ) ) ;
1819
1819
let holder_htlc_key = derive_private_key ( secp_ctx, & inner. keys . per_commitment_point , htlc_base_key) ;
1820
1820
1821
- for this_htlc in inner. htlcs . iter ( ) {
1821
+ for this_htlc in inner. nondust_htlcs . iter ( ) {
1822
1822
assert ! ( this_htlc. transaction_output_index. is_some( ) ) ;
1823
1823
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 ) ;
1824
1824
@@ -1836,7 +1836,7 @@ impl<'a> TrustedCommitmentTransaction<'a> {
1836
1836
preimage : & Option < PaymentPreimage > ,
1837
1837
) -> Transaction {
1838
1838
let keys = & self . inner . keys ;
1839
- let this_htlc = & self . inner . htlcs [ htlc_index] ;
1839
+ let this_htlc = & self . inner . nondust_htlcs [ htlc_index] ;
1840
1840
assert ! ( this_htlc. transaction_output_index. is_some( ) ) ;
1841
1841
// if we don't have preimage for an HTLC-Success, we can't generate an HTLC transaction.
1842
1842
if !this_htlc. offered && preimage. is_none ( ) { unreachable ! ( ) ; }
@@ -1858,7 +1858,7 @@ impl<'a> TrustedCommitmentTransaction<'a> {
1858
1858
) -> Witness {
1859
1859
let keys = & self . inner . keys ;
1860
1860
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 ,
1862
1862
& keys. countersignatory_htlc_key , & keys. revocation_key
1863
1863
) ;
1864
1864
build_htlc_input_witness (
0 commit comments