Skip to content

Commit d1ac071

Browse files
authored
Merge pull request #3045 from TheBlueMatt/2024-03-fees-are-dust
Include excess counterparty commitment transaction fees in dust exposure
2 parents 78ab54f + 5091c1f commit d1ac071

File tree

6 files changed

+401
-175
lines changed

6 files changed

+401
-175
lines changed

lightning/src/ln/channel.rs

+190-129
Large diffs are not rendered by default.

lightning/src/ln/channelmanager.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7684,7 +7684,7 @@ where
76847684
}
76857685
}
76867686
}
7687-
try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info), chan_phase_entry);
7687+
try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info, &self.fee_estimator), chan_phase_entry);
76887688
} else {
76897689
return try_chan_phase_entry!(self, Err(ChannelError::Close(
76907690
"Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);

lightning/src/ln/functional_tests.rs

+154-26
Original file line numberDiff line numberDiff line change
@@ -2433,11 +2433,11 @@ fn channel_monitor_network_test() {
24332433
#[test]
24342434
fn test_justice_tx_htlc_timeout() {
24352435
// Test justice txn built on revoked HTLC-Timeout tx, against both sides
2436-
let mut alice_config = UserConfig::default();
2436+
let mut alice_config = test_default_channel_config();
24372437
alice_config.channel_handshake_config.announced_channel = true;
24382438
alice_config.channel_handshake_limits.force_announced_channel_preference = false;
24392439
alice_config.channel_handshake_config.our_to_self_delay = 6 * 24 * 5;
2440-
let mut bob_config = UserConfig::default();
2440+
let mut bob_config = test_default_channel_config();
24412441
bob_config.channel_handshake_config.announced_channel = true;
24422442
bob_config.channel_handshake_limits.force_announced_channel_preference = false;
24432443
bob_config.channel_handshake_config.our_to_self_delay = 6 * 24 * 3;
@@ -2496,11 +2496,11 @@ fn test_justice_tx_htlc_timeout() {
24962496
#[test]
24972497
fn test_justice_tx_htlc_success() {
24982498
// Test justice txn built on revoked HTLC-Success tx, against both sides
2499-
let mut alice_config = UserConfig::default();
2499+
let mut alice_config = test_default_channel_config();
25002500
alice_config.channel_handshake_config.announced_channel = true;
25012501
alice_config.channel_handshake_limits.force_announced_channel_preference = false;
25022502
alice_config.channel_handshake_config.our_to_self_delay = 6 * 24 * 5;
2503-
let mut bob_config = UserConfig::default();
2503+
let mut bob_config = test_default_channel_config();
25042504
bob_config.channel_handshake_config.announced_channel = true;
25052505
bob_config.channel_handshake_limits.force_announced_channel_preference = false;
25062506
bob_config.channel_handshake_config.our_to_self_delay = 6 * 24 * 3;
@@ -9872,7 +9872,7 @@ enum ExposureEvent {
98729872
AtUpdateFeeOutbound,
98739873
}
98749874

9875-
fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_event: ExposureEvent, on_holder_tx: bool, multiplier_dust_limit: bool) {
9875+
fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_event: ExposureEvent, on_holder_tx: bool, multiplier_dust_limit: bool, apply_excess_fee: bool) {
98769876
// Test that we properly reject dust HTLC violating our `max_dust_htlc_exposure_msat`
98779877
// policy.
98789878
//
@@ -9887,12 +9887,33 @@ fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_e
98879887

98889888
let chanmon_cfgs = create_chanmon_cfgs(2);
98899889
let mut config = test_default_channel_config();
9890+
9891+
// We hard-code the feerate values here but they're re-calculated furter down and asserted.
9892+
// If the values ever change below these constants should simply be updated.
9893+
const AT_FEE_OUTBOUND_HTLCS: u64 = 20;
9894+
let nondust_htlc_count_in_limit =
9895+
if exposure_breach_event == ExposureEvent::AtUpdateFeeOutbound {
9896+
AT_FEE_OUTBOUND_HTLCS
9897+
} else { 0 };
9898+
let initial_feerate = if apply_excess_fee { 253 * 2 } else { 253 };
9899+
let expected_dust_buffer_feerate = initial_feerate + 2530;
9900+
let mut commitment_tx_cost = commit_tx_fee_msat(initial_feerate - 253, nondust_htlc_count_in_limit, &ChannelTypeFeatures::empty());
9901+
commitment_tx_cost +=
9902+
if on_holder_tx {
9903+
htlc_success_tx_weight(&ChannelTypeFeatures::empty())
9904+
} else {
9905+
htlc_timeout_tx_weight(&ChannelTypeFeatures::empty())
9906+
} * (initial_feerate as u64 - 253) / 1000 * nondust_htlc_count_in_limit;
9907+
{
9908+
let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
9909+
*feerate_lock = initial_feerate;
9910+
}
98909911
config.channel_config.max_dust_htlc_exposure = if multiplier_dust_limit {
98919912
// Default test fee estimator rate is 253 sat/kw, so we set the multiplier to 5_000_000 / 253
98929913
// to get roughly the same initial value as the default setting when this test was
98939914
// originally written.
9894-
MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253)
9895-
} else { MaxDustHTLCExposure::FixedLimitMsat(5_000_000) }; // initial default setting value
9915+
MaxDustHTLCExposure::FeeRateMultiplier((5_000_000 + commitment_tx_cost) / 253)
9916+
} else { MaxDustHTLCExposure::FixedLimitMsat(5_000_000 + commitment_tx_cost) };
98969917
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
98979918
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config), None]);
98989919
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
@@ -9936,6 +9957,11 @@ fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_e
99369957
let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
99379958
update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &as_update, &bs_update);
99389959

9960+
{
9961+
let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
9962+
*feerate_lock = 253;
9963+
}
9964+
99399965
// Fetch a route in advance as we will be unable to once we're unable to send.
99409966
let (mut route, payment_hash, _, payment_secret) =
99419967
get_route_and_payment_hash!(nodes[0], nodes[1], 1000);
@@ -9945,8 +9971,9 @@ fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_e
99459971
let chan_lock = per_peer_state.get(&nodes[1].node.get_our_node_id()).unwrap().lock().unwrap();
99469972
let chan = chan_lock.channel_by_id.get(&channel_id).unwrap();
99479973
(chan.context().get_dust_buffer_feerate(None) as u64,
9948-
chan.context().get_max_dust_htlc_exposure_msat(&LowerBoundedFeeEstimator(nodes[0].fee_estimator)))
9974+
chan.context().get_max_dust_htlc_exposure_msat(253))
99499975
};
9976+
assert_eq!(dust_buffer_feerate, expected_dust_buffer_feerate as u64);
99509977
let dust_outbound_htlc_on_holder_tx_msat: u64 = (dust_buffer_feerate * htlc_timeout_tx_weight(&channel_type_features) / 1000 + open_channel.common_fields.dust_limit_satoshis - 1) * 1000;
99519978
let dust_outbound_htlc_on_holder_tx: u64 = max_dust_htlc_exposure_msat / dust_outbound_htlc_on_holder_tx_msat;
99529979

@@ -9956,8 +9983,13 @@ fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_e
99569983
let dust_inbound_htlc_on_holder_tx_msat: u64 = (dust_buffer_feerate * htlc_success_tx_weight(&channel_type_features) / 1000 + open_channel.common_fields.dust_limit_satoshis - if multiplier_dust_limit { 3 } else { 2 }) * 1000;
99579984
let dust_inbound_htlc_on_holder_tx: u64 = max_dust_htlc_exposure_msat / dust_inbound_htlc_on_holder_tx_msat;
99589985

9986+
// This test was written with a fixed dust value here, which we retain, but assert that it is,
9987+
// indeed, dust on both transactions.
99599988
let dust_htlc_on_counterparty_tx: u64 = 4;
9960-
let dust_htlc_on_counterparty_tx_msat: u64 = max_dust_htlc_exposure_msat / dust_htlc_on_counterparty_tx;
9989+
let dust_htlc_on_counterparty_tx_msat: u64 = 1_250_000;
9990+
let calcd_dust_htlc_on_counterparty_tx_msat: u64 = (dust_buffer_feerate * htlc_timeout_tx_weight(&channel_type_features) / 1000 + open_channel.common_fields.dust_limit_satoshis - if multiplier_dust_limit { 3 } else { 2 }) * 1000;
9991+
assert!(dust_htlc_on_counterparty_tx_msat < dust_inbound_htlc_on_holder_tx_msat);
9992+
assert!(dust_htlc_on_counterparty_tx_msat < calcd_dust_htlc_on_counterparty_tx_msat);
99619993

99629994
if on_holder_tx {
99639995
if dust_outbound_balance {
@@ -10027,15 +10059,15 @@ fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_e
1002710059
// Outbound dust balance: 5200 sats
1002810060
nodes[0].logger.assert_log("lightning::ln::channel",
1002910061
format!("Cannot accept value that would put our exposure to dust HTLCs at {} over the limit {} on counterparty commitment tx",
10030-
dust_htlc_on_counterparty_tx_msat * (dust_htlc_on_counterparty_tx - 1) + dust_htlc_on_counterparty_tx_msat + 4,
10062+
dust_htlc_on_counterparty_tx_msat * dust_htlc_on_counterparty_tx + commitment_tx_cost + 4,
1003110063
max_dust_htlc_exposure_msat), 1);
1003210064
}
1003310065
} else if exposure_breach_event == ExposureEvent::AtUpdateFeeOutbound {
1003410066
route.paths[0].hops.last_mut().unwrap().fee_msat = 2_500_000;
1003510067
// For the multiplier dust exposure limit, since it scales with feerate,
1003610068
// we need to add a lot of HTLCs that will become dust at the new feerate
1003710069
// to cross the threshold.
10038-
for _ in 0..20 {
10070+
for _ in 0..AT_FEE_OUTBOUND_HTLCS {
1003910071
let (_, payment_hash, payment_secret) = get_payment_preimage_hash(&nodes[1], Some(1_000), None);
1004010072
nodes[0].node.send_payment_with_route(&route, payment_hash,
1004110073
RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
@@ -10054,27 +10086,123 @@ fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_e
1005410086
added_monitors.clear();
1005510087
}
1005610088

10057-
fn do_test_max_dust_htlc_exposure_by_threshold_type(multiplier_dust_limit: bool) {
10058-
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, true, multiplier_dust_limit);
10059-
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, true, multiplier_dust_limit);
10060-
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, true, multiplier_dust_limit);
10061-
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, false, multiplier_dust_limit);
10062-
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, false, multiplier_dust_limit);
10063-
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, false, multiplier_dust_limit);
10064-
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, true, multiplier_dust_limit);
10065-
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, false, multiplier_dust_limit);
10066-
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, true, multiplier_dust_limit);
10067-
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, false, multiplier_dust_limit);
10068-
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, false, multiplier_dust_limit);
10069-
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, true, multiplier_dust_limit);
10089+
fn do_test_max_dust_htlc_exposure_by_threshold_type(multiplier_dust_limit: bool, apply_excess_fee: bool) {
10090+
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, true, multiplier_dust_limit, apply_excess_fee);
10091+
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, true, multiplier_dust_limit, apply_excess_fee);
10092+
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, true, multiplier_dust_limit, apply_excess_fee);
10093+
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, false, multiplier_dust_limit, apply_excess_fee);
10094+
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, false, multiplier_dust_limit, apply_excess_fee);
10095+
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, false, multiplier_dust_limit, apply_excess_fee);
10096+
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, true, multiplier_dust_limit, apply_excess_fee);
10097+
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, false, multiplier_dust_limit, apply_excess_fee);
10098+
if !multiplier_dust_limit && !apply_excess_fee {
10099+
// Because non-dust HTLC transaction fees are included in the dust exposure, trying to
10100+
// increase the fee to hit a higher dust exposure with a
10101+
// `MaxDustHTLCExposure::FeeRateMultiplier` is no longer super practical, so we skip these
10102+
// in the `multiplier_dust_limit` case.
10103+
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, true, multiplier_dust_limit, apply_excess_fee);
10104+
do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, false, multiplier_dust_limit, apply_excess_fee);
10105+
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, false, multiplier_dust_limit, apply_excess_fee);
10106+
do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, true, multiplier_dust_limit, apply_excess_fee);
10107+
}
1007010108
}
1007110109

1007210110
#[test]
1007310111
fn test_max_dust_htlc_exposure() {
10074-
do_test_max_dust_htlc_exposure_by_threshold_type(false);
10075-
do_test_max_dust_htlc_exposure_by_threshold_type(true);
10112+
do_test_max_dust_htlc_exposure_by_threshold_type(false, false);
10113+
do_test_max_dust_htlc_exposure_by_threshold_type(false, true);
10114+
do_test_max_dust_htlc_exposure_by_threshold_type(true, false);
10115+
do_test_max_dust_htlc_exposure_by_threshold_type(true, true);
10116+
}
10117+
10118+
#[test]
10119+
fn test_nondust_htlc_fees_are_dust() {
10120+
// Test that the transaction fees paid in nondust HTLCs count towards our dust limit
10121+
let chanmon_cfgs = create_chanmon_cfgs(3);
10122+
let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10123+
10124+
let mut config = test_default_channel_config();
10125+
// Set the dust limit to the default value
10126+
config.channel_config.max_dust_htlc_exposure =
10127+
MaxDustHTLCExposure::FeeRateMultiplier(10_000);
10128+
// Make sure the HTLC limits don't get in the way
10129+
config.channel_handshake_limits.min_max_accepted_htlcs = 400;
10130+
config.channel_handshake_config.our_max_accepted_htlcs = 400;
10131+
config.channel_handshake_config.our_htlc_minimum_msat = 1;
10132+
10133+
let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[Some(config), Some(config), Some(config)]);
10134+
let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10135+
10136+
// Create a channel from 1 -> 0 but immediately push all of the funds towards 0
10137+
let chan_id_1 = create_announced_chan_between_nodes(&nodes, 1, 0).2;
10138+
while nodes[1].node.list_channels()[0].next_outbound_htlc_limit_msat > 0 {
10139+
send_payment(&nodes[1], &[&nodes[0]], nodes[1].node.list_channels()[0].next_outbound_htlc_limit_msat);
10140+
}
10141+
10142+
// First get the channel one HTLC_VALUE HTLC away from the dust limit by sending dust HTLCs
10143+
// repeatedly until we run out of space.
10144+
const HTLC_VALUE: u64 = 1_000_000; // Doesn't matter, tune until the test passes
10145+
let payment_preimage = route_payment(&nodes[0], &[&nodes[1]], HTLC_VALUE).0;
10146+
10147+
while nodes[0].node.list_channels()[0].next_outbound_htlc_minimum_msat == 0 {
10148+
route_payment(&nodes[0], &[&nodes[1]], HTLC_VALUE);
10149+
}
10150+
assert_ne!(nodes[0].node.list_channels()[0].next_outbound_htlc_limit_msat, 0,
10151+
"We don't want to run out of ability to send because of some non-dust limit");
10152+
assert!(nodes[0].node.list_channels()[0].pending_outbound_htlcs.len() < 10,
10153+
"We should be able to fill our dust limit without too many HTLCs");
10154+
10155+
let dust_limit = nodes[0].node.list_channels()[0].next_outbound_htlc_minimum_msat;
10156+
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage);
10157+
assert_ne!(nodes[0].node.list_channels()[0].next_outbound_htlc_minimum_msat, 0,
10158+
"Make sure we are able to send once we clear one HTLC");
10159+
10160+
// At this point we have somewhere between dust_limit and dust_limit * 2 left in our dust
10161+
// exposure limit, and we want to max that out using non-dust HTLCs.
10162+
let commitment_tx_per_htlc_cost =
10163+
htlc_success_tx_weight(&ChannelTypeFeatures::empty()) * 253;
10164+
let max_htlcs_remaining = dust_limit * 2 / commitment_tx_per_htlc_cost;
10165+
assert!(max_htlcs_remaining < 30,
10166+
"We should be able to fill our dust limit without too many HTLCs");
10167+
for i in 0..max_htlcs_remaining + 1 {
10168+
assert_ne!(i, max_htlcs_remaining);
10169+
if nodes[0].node.list_channels()[0].next_outbound_htlc_limit_msat < dust_limit {
10170+
// We found our limit, and it was less than max_htlcs_remaining!
10171+
// At this point we can only send dust HTLCs as any non-dust HTLCs will overuse our
10172+
// remaining dust exposure.
10173+
break;
10174+
}
10175+
route_payment(&nodes[0], &[&nodes[1]], dust_limit * 2);
10176+
}
10177+
10178+
// At this point non-dust HTLCs are no longer accepted from node 0 -> 1, we also check that
10179+
// such HTLCs can't be routed over the same channel either.
10180+
create_announced_chan_between_nodes(&nodes, 2, 0);
10181+
let (route, payment_hash, _, payment_secret) =
10182+
get_route_and_payment_hash!(nodes[2], nodes[1], dust_limit * 2);
10183+
let onion = RecipientOnionFields::secret_only(payment_secret);
10184+
nodes[2].node.send_payment_with_route(&route, payment_hash, onion, PaymentId([0; 32])).unwrap();
10185+
check_added_monitors(&nodes[2], 1);
10186+
let send = SendEvent::from_node(&nodes[2]);
10187+
10188+
nodes[0].node.handle_update_add_htlc(&nodes[2].node.get_our_node_id(), &send.msgs[0]);
10189+
commitment_signed_dance!(nodes[0], nodes[2], send.commitment_msg, false, true);
10190+
10191+
expect_pending_htlcs_forwardable!(nodes[0]);
10192+
check_added_monitors(&nodes[0], 1);
10193+
let node_id_1 = nodes[1].node.get_our_node_id();
10194+
expect_htlc_handling_failed_destinations!(
10195+
nodes[0].node.get_and_clear_pending_events(),
10196+
&[HTLCDestination::NextHopChannel { node_id: Some(node_id_1), channel_id: chan_id_1 }]
10197+
);
10198+
10199+
let fail = get_htlc_update_msgs(&nodes[0], &nodes[2].node.get_our_node_id());
10200+
nodes[2].node.handle_update_fail_htlc(&nodes[0].node.get_our_node_id(), &fail.update_fail_htlcs[0]);
10201+
commitment_signed_dance!(nodes[2], nodes[0], fail.commitment_signed, false);
10202+
expect_payment_failed_conditions(&nodes[2], payment_hash, false, PaymentFailedConditions::new());
1007610203
}
1007710204

10205+
1007810206
#[test]
1007910207
fn test_non_final_funding_tx() {
1008010208
let chanmon_cfgs = create_chanmon_cfgs(2);

lightning/src/ln/monitor_tests.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ use crate::ln::channel;
1919
use crate::ln::types::ChannelId;
2020
use crate::ln::channelmanager::{BREAKDOWN_TIMEOUT, PaymentId, RecipientOnionFields};
2121
use crate::ln::msgs::ChannelMessageHandler;
22-
use crate::util::config::UserConfig;
2322
use crate::crypto::utils::sign;
2423
use crate::util::ser::Writeable;
2524
use crate::util::scid_utils::block_from_scid;
@@ -2250,7 +2249,7 @@ fn test_yield_anchors_events() {
22502249
// emitted by LDK, such that the consumer can attach fees to the zero fee HTLC transactions.
22512250
let mut chanmon_cfgs = create_chanmon_cfgs(2);
22522251
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2253-
let mut anchors_config = UserConfig::default();
2252+
let mut anchors_config = test_default_channel_config();
22542253
anchors_config.channel_handshake_config.announced_channel = true;
22552254
anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
22562255
anchors_config.manually_accept_inbound_channels = true;
@@ -2401,7 +2400,7 @@ fn test_anchors_aggregated_revoked_htlc_tx() {
24012400
let bob_persister;
24022401
let bob_chain_monitor;
24032402

2404-
let mut anchors_config = UserConfig::default();
2403+
let mut anchors_config = test_default_channel_config();
24052404
anchors_config.channel_handshake_config.announced_channel = true;
24062405
anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
24072406
anchors_config.manually_accept_inbound_channels = true;

lightning/src/ln/onion_route_tests.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ use crate::ln::onion_utils;
2121
use crate::routing::gossip::{NetworkUpdate, RoutingFees};
2222
use crate::routing::router::{get_route, PaymentParameters, Route, RouteParameters, RouteHint, RouteHintHop};
2323
use crate::ln::features::{InitFeatures, Bolt11InvoiceFeatures};
24+
use crate::ln::functional_test_utils::test_default_channel_config;
2425
use crate::ln::msgs;
2526
use crate::ln::msgs::{ChannelMessageHandler, ChannelUpdate, OutboundTrampolinePayload};
2627
use crate::ln::wire::Encode;
@@ -328,7 +329,7 @@ fn test_onion_failure() {
328329
// to 2000, which is above the default value of 1000 set in create_node_chanmgrs.
329330
// This exposed a previous bug because we were using the wrong value all the way down in
330331
// Channel::get_counterparty_htlc_minimum_msat().
331-
let mut node_2_cfg: UserConfig = Default::default();
332+
let mut node_2_cfg: UserConfig = test_default_channel_config();
332333
node_2_cfg.channel_handshake_config.our_htlc_minimum_msat = 2000;
333334
node_2_cfg.channel_handshake_config.announced_channel = true;
334335
node_2_cfg.channel_handshake_limits.force_announced_channel_preference = false;

0 commit comments

Comments
 (0)