| 3506 | } |
| 3507 | |
| 3508 | static bool payment_supports_mpp(struct payment *p) |
| 3509 | { |
| 3510 | return feature_offered(p->features, OPT_BASIC_MPP); |
| 3511 | } |
| 3512 | |
| 3513 | /* Return fuzzed amount ~= target, but never exceeding max */ |
| 3514 | static struct amount_msat fuzzed_near(struct amount_msat target, |
no test coverage detected