Skip to content

Commit 5091c1f

Browse files
committed
Add a simple test of the new excess-fees-are-dust behavior
1 parent f0b3708 commit 5091c1f

File tree

1 file changed

+88
-0
lines changed

1 file changed

+88
-0
lines changed

lightning/src/ln/functional_tests.rs

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10115,6 +10115,94 @@ fn test_max_dust_htlc_exposure() {
1011510115
do_test_max_dust_htlc_exposure_by_threshold_type(true, true);
1011610116
}
1011710117

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());
10203+
}
10204+
10205+
1011810206
#[test]
1011910207
fn test_non_final_funding_tx() {
1012010208
let chanmon_cfgs = create_chanmon_cfgs(2);

0 commit comments

Comments
 (0)