@@ -3598,15 +3598,15 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
3598
3598
to_broadcaster_value,
3599
3599
to_countersignatory_value,
3600
3600
) | {
3601
- let htlc_outputs = vec ! [ ] ;
3601
+ let nondust_htlcs = vec ! [ ] ;
3602
3602
3603
3603
let commitment_tx = self . build_counterparty_commitment_tx (
3604
3604
INITIAL_COMMITMENT_NUMBER ,
3605
3605
& their_per_commitment_point,
3606
3606
to_broadcaster_value,
3607
3607
to_countersignatory_value,
3608
3608
feerate_per_kw,
3609
- htlc_outputs ,
3609
+ & nondust_htlcs ,
3610
3610
) ;
3611
3611
// Take the opportunity to populate this recently introduced field
3612
3612
self . initial_counterparty_commitment_tx = Some ( commitment_tx. clone ( ) ) ;
@@ -3619,11 +3619,11 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
3619
3619
fn build_counterparty_commitment_tx (
3620
3620
& self , commitment_number : u64 , their_per_commitment_point : & PublicKey ,
3621
3621
to_broadcaster_value : u64 , to_countersignatory_value : u64 , feerate_per_kw : u32 ,
3622
- mut nondust_htlcs : Vec < ( HTLCOutputInCommitment , Option < Box < HTLCSource > > ) >
3622
+ nondust_htlcs : & Vec < HTLCOutputInCommitment >
3623
3623
) -> CommitmentTransaction {
3624
3624
let channel_parameters = & self . funding . channel_parameters . as_counterparty_broadcastable ( ) ;
3625
- CommitmentTransaction :: new_with_auxiliary_htlc_data ( commitment_number, their_per_commitment_point,
3626
- to_broadcaster_value, to_countersignatory_value, feerate_per_kw, & mut nondust_htlcs, channel_parameters, & self . onchain_tx_handler . secp_ctx )
3625
+ CommitmentTransaction :: new ( commitment_number, their_per_commitment_point,
3626
+ to_broadcaster_value, to_countersignatory_value, feerate_per_kw, nondust_htlcs, channel_parameters, & self . onchain_tx_handler . secp_ctx )
3627
3627
}
3628
3628
3629
3629
fn counterparty_commitment_txs_from_update ( & self , update : & ChannelMonitorUpdate ) -> Vec < CommitmentTransaction > {
@@ -3639,12 +3639,12 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
3639
3639
to_countersignatory_value_sat : Some ( to_countersignatory_value) } => {
3640
3640
3641
3641
let nondust_htlcs = htlc_outputs. iter ( ) . filter_map ( |( htlc, _) | {
3642
- htlc. transaction_output_index . map ( |_| ( htlc. clone ( ) , None ) )
3642
+ htlc. transaction_output_index . map ( |_| htlc) . cloned ( )
3643
3643
} ) . collect :: < Vec < _ > > ( ) ;
3644
3644
3645
3645
let commitment_tx = self . build_counterparty_commitment_tx ( commitment_number,
3646
3646
& their_per_commitment_point, to_broadcaster_value,
3647
- to_countersignatory_value, feerate_per_kw, nondust_htlcs) ;
3647
+ to_countersignatory_value, feerate_per_kw, & nondust_htlcs) ;
3648
3648
3649
3649
debug_assert_eq ! ( commitment_tx. trust( ) . txid( ) , commitment_txid) ;
3650
3650
@@ -5595,21 +5595,21 @@ mod tests {
5595
5595
{
5596
5596
let mut res = Vec :: new( ) ;
5597
5597
for ( idx, preimage) in $preimages_slice. iter( ) . enumerate( ) {
5598
- res. push( ( HTLCOutputInCommitment {
5598
+ res. push( HTLCOutputInCommitment {
5599
5599
offered: true ,
5600
5600
amount_msat: 0 ,
5601
5601
cltv_expiry: 0 ,
5602
5602
payment_hash: preimage. 1 . clone( ) ,
5603
5603
transaction_output_index: Some ( idx as u32 ) ,
5604
- } , ( ) ) ) ;
5604
+ } ) ;
5605
5605
}
5606
5606
res
5607
5607
}
5608
5608
}
5609
5609
}
5610
5610
macro_rules! preimages_slice_to_htlc_outputs {
5611
5611
( $preimages_slice: expr) => {
5612
- preimages_slice_to_htlcs!( $preimages_slice) . into_iter( ) . map( |( htlc, _ ) | ( htlc, None ) ) . collect( )
5612
+ preimages_slice_to_htlcs!( $preimages_slice) . into_iter( ) . map( |htlc| ( htlc, None ) ) . collect( )
5613
5613
}
5614
5614
}
5615
5615
let dummy_sig = crate :: crypto:: utils:: sign ( & secp_ctx,
@@ -5665,15 +5665,17 @@ mod tests {
5665
5665
let best_block = BestBlock :: from_network ( Network :: Testnet ) ;
5666
5666
let monitor = ChannelMonitor :: new (
5667
5667
Secp256k1 :: new ( ) , keys, Some ( shutdown_script. into_inner ( ) ) , 0 , & ScriptBuf :: new ( ) ,
5668
- & channel_parameters, true , 0 , HolderCommitmentTransaction :: dummy ( 0 , & mut Vec :: new ( ) ) ,
5668
+ & channel_parameters, true , 0 , HolderCommitmentTransaction :: dummy ( 0 , & Vec :: new ( ) ) ,
5669
5669
best_block, dummy_key, channel_id,
5670
5670
) ;
5671
5671
5672
- let mut htlcs = preimages_slice_to_htlcs ! ( preimages[ 0 ..10 ] ) ;
5673
- let dummy_commitment_tx = HolderCommitmentTransaction :: dummy ( 0 , & mut htlcs) ;
5672
+ let nondust_htlcs = preimages_slice_to_htlcs ! ( preimages[ 0 ..10 ] ) ;
5673
+ let dummy_commitment_tx = HolderCommitmentTransaction :: dummy ( 0 , & nondust_htlcs) ;
5674
+ // These htlcs now have their output indices assigned
5675
+ let nondust_htlcs = dummy_commitment_tx. nondust_htlcs ( ) ;
5674
5676
5675
5677
monitor. provide_latest_holder_commitment_tx ( dummy_commitment_tx. clone ( ) ,
5676
- htlcs . into_iter ( ) . map ( |( htlc, _ ) | ( htlc, Some ( dummy_sig) , Some ( dummy_source. clone ( ) ) ) ) . collect ( ) ) ;
5678
+ nondust_htlcs . into_iter ( ) . map ( |htlc| ( htlc. clone ( ) , Some ( dummy_sig) , Some ( dummy_source. clone ( ) ) ) ) . collect ( ) ) ;
5677
5679
monitor. provide_latest_counterparty_commitment_tx ( Txid :: from_byte_array ( Sha256 :: hash ( b"1" ) . to_byte_array ( ) ) ,
5678
5680
preimages_slice_to_htlc_outputs ! ( preimages[ 5 ..15 ] ) , 281474976710655 , dummy_key, & logger) ;
5679
5681
monitor. provide_latest_counterparty_commitment_tx ( Txid :: from_byte_array ( Sha256 :: hash ( b"2" ) . to_byte_array ( ) ) ,
@@ -5708,21 +5710,25 @@ mod tests {
5708
5710
5709
5711
// Now update holder commitment tx info, pruning only element 18 as we still care about the
5710
5712
// previous commitment tx's preimages too
5711
- let mut htlcs = preimages_slice_to_htlcs ! ( preimages[ 0 ..5 ] ) ;
5712
- let dummy_commitment_tx = HolderCommitmentTransaction :: dummy ( 0 , & mut htlcs) ;
5713
+ let nondust_htlcs = preimages_slice_to_htlcs ! ( preimages[ 0 ..5 ] ) ;
5714
+ let dummy_commitment_tx = HolderCommitmentTransaction :: dummy ( 0 , & nondust_htlcs) ;
5715
+ // These htlcs now have their output indices assigned
5716
+ let nondust_htlcs = dummy_commitment_tx. nondust_htlcs ( ) ;
5713
5717
monitor. provide_latest_holder_commitment_tx ( dummy_commitment_tx. clone ( ) ,
5714
- htlcs . into_iter ( ) . map ( |( htlc, _ ) | ( htlc, Some ( dummy_sig) , Some ( dummy_source. clone ( ) ) ) ) . collect ( ) ) ;
5718
+ nondust_htlcs . into_iter ( ) . map ( |htlc| ( htlc. clone ( ) , Some ( dummy_sig) , Some ( dummy_source. clone ( ) ) ) ) . collect ( ) ) ;
5715
5719
secret[ 0 ..32 ] . clone_from_slice ( & <Vec < u8 > >:: from_hex ( "2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8" ) . unwrap ( ) ) ;
5716
5720
monitor. provide_secret ( 281474976710653 , secret. clone ( ) ) . unwrap ( ) ;
5717
5721
assert_eq ! ( monitor. inner. lock( ) . unwrap( ) . payment_preimages. len( ) , 12 ) ;
5718
5722
test_preimages_exist ! ( & preimages[ 0 ..10 ] , monitor) ;
5719
5723
test_preimages_exist ! ( & preimages[ 18 ..20 ] , monitor) ;
5720
5724
5721
5725
// But if we do it again, we'll prune 5-10
5722
- let mut htlcs = preimages_slice_to_htlcs ! ( preimages[ 0 ..3 ] ) ;
5723
- let dummy_commitment_tx = HolderCommitmentTransaction :: dummy ( 0 , & mut htlcs) ;
5724
- monitor. provide_latest_holder_commitment_tx ( dummy_commitment_tx,
5725
- htlcs. into_iter ( ) . map ( |( htlc, _) | ( htlc, Some ( dummy_sig) , Some ( dummy_source. clone ( ) ) ) ) . collect ( ) ) ;
5726
+ let nondust_htlcs = preimages_slice_to_htlcs ! ( preimages[ 0 ..3 ] ) ;
5727
+ let dummy_commitment_tx = HolderCommitmentTransaction :: dummy ( 0 , & nondust_htlcs) ;
5728
+ // These htlcs now have their output indices assigned
5729
+ let nondust_htlcs = dummy_commitment_tx. nondust_htlcs ( ) ;
5730
+ monitor. provide_latest_holder_commitment_tx ( dummy_commitment_tx. clone ( ) ,
5731
+ nondust_htlcs. into_iter ( ) . map ( |htlc| ( htlc. clone ( ) , Some ( dummy_sig) , Some ( dummy_source. clone ( ) ) ) ) . collect ( ) ) ;
5726
5732
secret[ 0 ..32 ] . clone_from_slice ( & <Vec < u8 > >:: from_hex ( "27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116" ) . unwrap ( ) ) ;
5727
5733
monitor. provide_secret ( 281474976710652 , secret. clone ( ) ) . unwrap ( ) ;
5728
5734
assert_eq ! ( monitor. inner. lock( ) . unwrap( ) . payment_preimages. len( ) , 5 ) ;
@@ -5917,7 +5923,7 @@ mod tests {
5917
5923
let best_block = BestBlock :: from_network ( Network :: Testnet ) ;
5918
5924
let monitor = ChannelMonitor :: new (
5919
5925
Secp256k1 :: new ( ) , keys, Some ( shutdown_script. into_inner ( ) ) , 0 , & ScriptBuf :: new ( ) ,
5920
- & channel_parameters, true , 0 , HolderCommitmentTransaction :: dummy ( 0 , & mut Vec :: new ( ) ) ,
5926
+ & channel_parameters, true , 0 , HolderCommitmentTransaction :: dummy ( 0 , & Vec :: new ( ) ) ,
5921
5927
best_block, dummy_key, channel_id,
5922
5928
) ;
5923
5929
0 commit comments