@@ -2412,6 +2412,9 @@ pub struct PassAlongPathArgs<'a, 'b, 'c, 'd> {
2412
2412
pub clear_recipient_events : bool ,
2413
2413
pub expected_preimage : Option < PaymentPreimage > ,
2414
2414
pub is_probe : bool ,
2415
+ // Allow overpayment to the recipient up to this amount. Useful for payments to blinded paths
2416
+ // where rounding errors during `BlindedPayInfo` aggregation may result in overpayment.
2417
+ pub overpay_limit : u64 ,
2415
2418
}
2416
2419
2417
2420
impl < ' a , ' b , ' c , ' d > PassAlongPathArgs < ' a , ' b , ' c , ' d > {
@@ -2422,7 +2425,7 @@ impl<'a, 'b, 'c, 'd> PassAlongPathArgs<'a, 'b, 'c, 'd> {
2422
2425
Self {
2423
2426
origin_node, expected_path, recv_value, payment_hash, payment_secret : None , event,
2424
2427
payment_claimable_expected : true , clear_recipient_events : true , expected_preimage : None ,
2425
- is_probe : false ,
2428
+ is_probe : false , overpay_limit : 0 ,
2426
2429
}
2427
2430
}
2428
2431
pub fn clear_recipient_events ( mut self , clear_recipient_events : bool ) -> Self {
@@ -2446,13 +2449,17 @@ impl<'a, 'b, 'c, 'd> PassAlongPathArgs<'a, 'b, 'c, 'd> {
2446
2449
self . expected_preimage = Some ( payment_preimage) ;
2447
2450
self
2448
2451
}
2452
+ pub fn with_overpay_limit ( mut self , overpay_limit : u64 ) -> Self {
2453
+ self . overpay_limit = overpay_limit;
2454
+ self
2455
+ }
2449
2456
}
2450
2457
2451
2458
pub fn do_pass_along_path < ' a , ' b , ' c > ( args : PassAlongPathArgs ) -> Option < Event > {
2452
2459
let PassAlongPathArgs {
2453
2460
origin_node, expected_path, recv_value, payment_hash : our_payment_hash,
2454
2461
payment_secret : our_payment_secret, event : ev, payment_claimable_expected,
2455
- clear_recipient_events, expected_preimage, is_probe
2462
+ clear_recipient_events, expected_preimage, is_probe, overpay_limit ,
2456
2463
} = args;
2457
2464
2458
2465
let mut payment_event = SendEvent :: from_event ( ev) ;
@@ -2496,7 +2503,8 @@ pub fn do_pass_along_path<'a, 'b, 'c>(args: PassAlongPathArgs) -> Option<Event>
2496
2503
assert_eq ! ( our_payment_secret, onion_fields. as_ref( ) . unwrap( ) . payment_secret) ;
2497
2504
} ,
2498
2505
}
2499
- assert_eq ! ( * amount_msat, recv_value) ;
2506
+ assert ! ( * amount_msat >= recv_value) ;
2507
+ assert ! ( * amount_msat <= recv_value + overpay_limit) ;
2500
2508
assert ! ( node. node. list_channels( ) . iter( ) . any( |details| details. channel_id == via_channel_id. unwrap( ) ) ) ;
2501
2509
assert ! ( node. node. list_channels( ) . iter( ) . any( |details| details. user_channel_id == via_user_channel_id. unwrap( ) ) ) ;
2502
2510
assert ! ( claim_deadline. unwrap( ) > node. best_block_info( ) . 1 ) ;
0 commit comments