File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2291,12 +2291,12 @@ impl FundingScope {
2291
2291
.funding_pubkey = counterparty_funding_pubkey;
2292
2292
2293
2293
// New reserve values are based on the new channel value and are v2-specific
2294
- let counterparty_selected_channel_reserve_satoshis = Some(get_v2_channel_reserve_satoshis(
2294
+ let counterparty_selected_channel_reserve_satoshis =
2295
+ Some(get_v2_channel_reserve_satoshis(post_channel_value, MIN_CHAN_DUST_LIMIT_SATOSHIS));
2296
+ let holder_selected_channel_reserve_satoshis = get_v2_channel_reserve_satoshis(
2295
2297
post_channel_value,
2296
2298
context.counterparty_dust_limit_satoshis,
2297
- ));
2298
- let holder_selected_channel_reserve_satoshis =
2299
- get_v2_channel_reserve_satoshis(post_channel_value, MIN_CHAN_DUST_LIMIT_SATOSHIS);
2299
+ );
2300
2300
2301
2301
Self {
2302
2302
channel_transaction_parameters: post_channel_transaction_parameters,
You can’t perform that action at this time.
0 commit comments