@@ -20,7 +20,7 @@ use crate::ln::msgs;
2020use crate :: ln:: msgs:: ChannelMessageHandler ;
2121use crate :: ln:: onion_utils;
2222use crate :: ln:: onion_utils:: INVALID_ONION_BLINDING ;
23- use crate :: ln:: outbound_payment:: Retry ;
23+ use crate :: ln:: outbound_payment:: { Retry , IDEMPOTENCY_TIMEOUT_TICKS } ;
2424use crate :: offers:: invoice:: BlindedPayInfo ;
2525use crate :: prelude:: * ;
2626use crate :: routing:: router:: { Payee , PaymentParameters , RouteParameters } ;
@@ -1052,3 +1052,67 @@ fn blinded_path_retries() {
10521052 _ => panic ! ( )
10531053 }
10541054}
1055+
1056+ #[ test]
1057+ fn min_htlc ( ) {
1058+ // The min htlc of a blinded path is the max (htlc_min - following_fees) along the path. Make sure
1059+ // the payment succeeds when we calculate the min htlc this way.
1060+ let chanmon_cfgs = create_chanmon_cfgs ( 4 ) ;
1061+ let node_cfgs = create_node_cfgs ( 4 , & chanmon_cfgs) ;
1062+ let mut node_1_cfg = test_default_channel_config ( ) ;
1063+ node_1_cfg. channel_handshake_config . our_htlc_minimum_msat = 2000 ;
1064+ node_1_cfg. channel_config . forwarding_fee_base_msat = 1000 ;
1065+ node_1_cfg. channel_config . forwarding_fee_proportional_millionths = 100_000 ;
1066+ let mut node_2_cfg = test_default_channel_config ( ) ;
1067+ node_2_cfg. channel_handshake_config . our_htlc_minimum_msat = 5000 ;
1068+ node_2_cfg. channel_config . forwarding_fee_base_msat = 200 ;
1069+ node_2_cfg. channel_config . forwarding_fee_proportional_millionths = 150_000 ;
1070+ let mut node_3_cfg = test_default_channel_config ( ) ;
1071+ node_3_cfg. channel_handshake_config . our_htlc_minimum_msat = 2000 ;
1072+ let node_chanmgrs = create_node_chanmgrs ( 4 , & node_cfgs, & [ None , Some ( node_1_cfg) , Some ( node_2_cfg) , Some ( node_3_cfg) ] ) ;
1073+ let nodes = create_network ( 4 , & node_cfgs, & node_chanmgrs) ;
1074+ create_announced_chan_between_nodes_with_value ( & nodes, 0 , 1 , 1_000_000 , 0 ) ;
1075+ let chan_1_2 = create_announced_chan_between_nodes_with_value ( & nodes, 1 , 2 , 1_000_000 , 0 ) ;
1076+ let chan_2_3 = create_announced_chan_between_nodes_with_value ( & nodes, 2 , 3 , 1_000_000 , 0 ) ;
1077+
1078+ let min_htlc_msat = 4174 ; // the resulting htlc min
1079+ let ( payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash ( & nodes[ 3 ] , Some ( min_htlc_msat) , None ) ;
1080+ let mut route_params = get_blinded_route_parameters (
1081+ min_htlc_msat, payment_secret, chan_1_2. 1 . contents . htlc_minimum_msat ,
1082+ chan_1_2. 1 . contents . htlc_maximum_msat , vec ! [ nodes[ 1 ] . node. get_our_node_id( ) ,
1083+ nodes[ 2 ] . node. get_our_node_id( ) , nodes[ 3 ] . node. get_our_node_id( ) ] ,
1084+ & [ & chan_1_2. 0 . contents , & chan_2_3. 0 . contents ] , & chanmon_cfgs[ 3 ] . keys_manager ) ;
1085+ assert_eq ! ( min_htlc_msat,
1086+ route_params. payment_params. payee. blinded_route_hints( ) [ 0 ] . 0 . htlc_minimum_msat) ;
1087+
1088+ nodes[ 0 ] . node . send_payment ( payment_hash, RecipientOnionFields :: spontaneous_empty ( ) , PaymentId ( payment_hash. 0 ) , route_params. clone ( ) , Retry :: Attempts ( 0 ) ) . unwrap ( ) ;
1089+ check_added_monitors ( & nodes[ 0 ] , 1 ) ;
1090+ pass_along_route ( & nodes[ 0 ] , & [ & [ & nodes[ 1 ] , & nodes[ 2 ] , & nodes[ 3 ] ] ] , min_htlc_msat, payment_hash, payment_secret) ;
1091+ claim_payment ( & nodes[ 0 ] , & [ & nodes[ 1 ] , & nodes[ 2 ] , & nodes[ 3 ] ] , payment_preimage) ;
1092+
1093+ // Paying 1 less than the min fails.
1094+ for _ in 0 ..IDEMPOTENCY_TIMEOUT_TICKS + 1 {
1095+ nodes[ 0 ] . node . timer_tick_occurred ( ) ;
1096+ }
1097+ if let Payee :: Blinded { ref mut route_hints, .. } = route_params. payment_params . payee {
1098+ route_hints[ 0 ] . 0 . htlc_minimum_msat -= 1 ;
1099+ } else { panic ! ( ) }
1100+ route_params. final_value_msat -= 1 ;
1101+ nodes[ 0 ] . node . send_payment ( payment_hash, RecipientOnionFields :: spontaneous_empty ( ) , PaymentId ( payment_hash. 0 ) , route_params, Retry :: Attempts ( 0 ) ) . unwrap ( ) ;
1102+ check_added_monitors ( & nodes[ 0 ] , 1 ) ;
1103+
1104+ let mut payment_event_0_1 = {
1105+ let mut events = nodes[ 0 ] . node . get_and_clear_pending_msg_events ( ) ;
1106+ assert_eq ! ( events. len( ) , 1 ) ;
1107+ let ev = remove_first_msg_event_to_node ( & nodes[ 1 ] . node . get_our_node_id ( ) , & mut events) ;
1108+ SendEvent :: from_event ( ev)
1109+ } ;
1110+ nodes[ 1 ] . node . handle_update_add_htlc ( & nodes[ 0 ] . node . get_our_node_id ( ) , & payment_event_0_1. msgs [ 0 ] ) ;
1111+ check_added_monitors ! ( nodes[ 1 ] , 0 ) ;
1112+ do_commitment_signed_dance ( & nodes[ 1 ] , & nodes[ 0 ] , & payment_event_0_1. commitment_msg , true , true ) ;
1113+ let mut updates = get_htlc_update_msgs ! ( nodes[ 1 ] , nodes[ 0 ] . node. get_our_node_id( ) ) ;
1114+ nodes[ 0 ] . node . handle_update_fail_htlc ( & nodes[ 1 ] . node . get_our_node_id ( ) , & updates. update_fail_htlcs [ 0 ] ) ;
1115+ do_commitment_signed_dance ( & nodes[ 0 ] , & nodes[ 1 ] , & updates. commitment_signed , false , false ) ;
1116+ expect_payment_failed_conditions ( & nodes[ 0 ] , payment_hash, false ,
1117+ PaymentFailedConditions :: new ( ) . expected_htlc_error_data ( INVALID_ONION_BLINDING , & [ 0 ; 32 ] ) ) ;
1118+ }
0 commit comments