@@ -1665,8 +1665,10 @@ impl InteractiveTxConstructor {
1665
1665
/// Determine whether a change output should be added or not, and if so, of what size,
1666
1666
/// considering our given inputs, outputs, and intended contribution.
1667
1667
/// Computes and takes into account fees.
1668
+ /// Return value is the value computed for the change output (in satoshis),
1669
+ /// or None if a change is not needed/possible.
1668
1670
#[ allow( dead_code) ] // TODO(dual_funding): Remove once begin_interactive_funding_tx_construction() is used
1669
- pub ( super ) fn need_to_add_funding_change_output (
1671
+ pub ( super ) fn calculate_change_output_value (
1670
1672
is_initiator : bool , our_contribution : u64 , funding_inputs_prev_outputs : & Vec < TxOut > ,
1671
1673
funding_outputs : & Vec < OutputOwned > , funding_feerate_sat_per_1000_weight : u32 ,
1672
1674
holder_dust_limit_satoshis : u64 ,
@@ -1707,7 +1709,7 @@ mod tests {
1707
1709
use crate :: chain:: chaininterface:: { fee_for_weight, FEERATE_FLOOR_SATS_PER_KW } ;
1708
1710
use crate :: ln:: channel:: TOTAL_BITCOIN_SUPPLY_SATOSHIS ;
1709
1711
use crate :: ln:: interactivetxs:: {
1710
- generate_holder_serial_id , need_to_add_funding_change_output , AbortReason ,
1712
+ calculate_change_output_value , generate_holder_serial_id , AbortReason ,
1711
1713
HandleTxCompleteValue , InteractiveTxConstructor , InteractiveTxConstructorArgs ,
1712
1714
InteractiveTxMessageSend , MAX_INPUTS_OUTPUTS_COUNT , MAX_RECEIVED_TX_ADD_INPUT_COUNT ,
1713
1715
MAX_RECEIVED_TX_ADD_OUTPUT_COUNT ,
@@ -2637,7 +2639,7 @@ mod tests {
2637
2639
}
2638
2640
2639
2641
#[ test]
2640
- fn test_need_to_add_funding_change_output_open ( ) {
2642
+ fn test_calculate_change_output_value_open ( ) {
2641
2643
let input_prevouts = vec ! [
2642
2644
TxOut { value: Amount :: from_sat( 70_000 ) , script_pubkey: ScriptBuf :: new( ) } ,
2643
2645
TxOut { value: Amount :: from_sat( 60_000 ) , script_pubkey: ScriptBuf :: new( ) } ,
@@ -2653,7 +2655,7 @@ mod tests {
2653
2655
let common_fees = 126 ;
2654
2656
{
2655
2657
// There is leftover for change
2656
- let res = need_to_add_funding_change_output (
2658
+ let res = calculate_change_output_value (
2657
2659
true ,
2658
2660
our_contributed,
2659
2661
& input_prevouts,
@@ -2665,7 +2667,7 @@ mod tests {
2665
2667
}
2666
2668
{
2667
2669
// There is leftover for change, without common fees
2668
- let res = need_to_add_funding_change_output (
2670
+ let res = calculate_change_output_value (
2669
2671
false ,
2670
2672
our_contributed,
2671
2673
& input_prevouts,
@@ -2677,7 +2679,7 @@ mod tests {
2677
2679
}
2678
2680
{
2679
2681
// Larger fee, smaller change
2680
- let res = need_to_add_funding_change_output (
2682
+ let res = calculate_change_output_value (
2681
2683
true ,
2682
2684
our_contributed,
2683
2685
& input_prevouts,
@@ -2689,7 +2691,7 @@ mod tests {
2689
2691
}
2690
2692
{
2691
2693
// Insufficient inputs, no leftover
2692
- let res = need_to_add_funding_change_output (
2694
+ let res = calculate_change_output_value (
2693
2695
false ,
2694
2696
130_000 ,
2695
2697
& input_prevouts,
@@ -2701,7 +2703,7 @@ mod tests {
2701
2703
}
2702
2704
{
2703
2705
// Very small leftover
2704
- let res = need_to_add_funding_change_output (
2706
+ let res = calculate_change_output_value (
2705
2707
false ,
2706
2708
128_100 ,
2707
2709
& input_prevouts,
@@ -2713,7 +2715,7 @@ mod tests {
2713
2715
}
2714
2716
{
2715
2717
// Small leftover, but not dust
2716
- let res = need_to_add_funding_change_output (
2718
+ let res = calculate_change_output_value (
2717
2719
false ,
2718
2720
128_100 ,
2719
2721
& input_prevouts,
@@ -2726,7 +2728,7 @@ mod tests {
2726
2728
}
2727
2729
2728
2730
#[ test]
2729
- fn test_need_to_add_funding_change_output_splice ( ) {
2731
+ fn test_calculate_change_output_value_splice ( ) {
2730
2732
let input_prevouts = vec ! [
2731
2733
TxOut { value: Amount :: from_sat( 70_000 ) , script_pubkey: ScriptBuf :: new( ) } ,
2732
2734
TxOut { value: Amount :: from_sat( 60_000 ) , script_pubkey: ScriptBuf :: new( ) } ,
@@ -2742,7 +2744,7 @@ mod tests {
2742
2744
let common_fees = 126 ;
2743
2745
{
2744
2746
// There is leftover for change
2745
- let res = need_to_add_funding_change_output (
2747
+ let res = calculate_change_output_value (
2746
2748
true ,
2747
2749
our_contributed,
2748
2750
& input_prevouts,
@@ -2754,7 +2756,7 @@ mod tests {
2754
2756
}
2755
2757
{
2756
2758
// Very small leftover
2757
- let res = need_to_add_funding_change_output (
2759
+ let res = calculate_change_output_value (
2758
2760
false ,
2759
2761
128_100 ,
2760
2762
& input_prevouts,
@@ -2766,7 +2768,7 @@ mod tests {
2766
2768
}
2767
2769
{
2768
2770
// Small leftover, but not dust
2769
- let res = need_to_add_funding_change_output (
2771
+ let res = calculate_change_output_value (
2770
2772
false ,
2771
2773
128_100 ,
2772
2774
& input_prevouts,
0 commit comments