File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ pub struct AvailableBalances {
74
74
/// The maximum value we can assign to the next outbound HTLC
75
75
pub next_outbound_htlc_limit_msat : u64 ,
76
76
/// The minimum value we can assign to the next outbound HTLC
77
- pub next_outbound_htlc_min_msat : u64 ,
77
+ pub next_outbound_htlc_minimum_msat : u64 ,
78
78
}
79
79
80
80
#[ derive( Debug , Clone , Copy , PartialEq ) ]
@@ -2764,7 +2764,7 @@ impl<Signer: WriteableEcdsaChannelSigner> Channel<Signer> {
2764
2764
0 ) as u64 ,
2765
2765
outbound_capacity_msat,
2766
2766
next_outbound_htlc_limit_msat : available_capacity_msat,
2767
- next_outbound_htlc_min_msat : 0 ,
2767
+ next_outbound_htlc_minimum_msat : 0 ,
2768
2768
balance_msat,
2769
2769
}
2770
2770
}
Original file line number Diff line number Diff line change @@ -1401,7 +1401,7 @@ impl ChannelDetails {
1401
1401
inbound_capacity_msat : balance. inbound_capacity_msat ,
1402
1402
outbound_capacity_msat : balance. outbound_capacity_msat ,
1403
1403
next_outbound_htlc_limit_msat : balance. next_outbound_htlc_limit_msat ,
1404
- next_outbound_htlc_minimum_msat : balance. next_outbound_htlc_min_msat ,
1404
+ next_outbound_htlc_minimum_msat : balance. next_outbound_htlc_minimum_msat ,
1405
1405
user_channel_id : channel. get_user_id ( ) ,
1406
1406
confirmations_required : channel. minimum_depth ( ) ,
1407
1407
confirmations : Some ( channel. get_funding_tx_confirmations ( best_block_height) ) ,
You can’t perform that action at this time.
0 commit comments