Skip to content

Commit 72305f5

Browse files
committed
f Account for liquidity_limit_multiplier given as optional argument
1 parent 6b6aebc commit 72305f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/payment_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ fn preflight_probes_yield_event_and_skip() {
13381338
.with_bolt11_features(invoice_features).unwrap();
13391339

13401340
let route_params = RouteParameters { payment_params, final_value_msat: 80_000_000 };
1341-
let res = nodes[0].node.send_preflight_probes(route_params).unwrap();
1341+
let res = nodes[0].node.send_preflight_probes(route_params, None).unwrap();
13421342

13431343
// We check that only one probe was sent, the other one was skipped due to limited liquidity.
13441344
assert_eq!(res.len(), 1);

0 commit comments

Comments
 (0)