| 695 | } |
| 696 | |
| 697 | static bool payment_route_can_carry_even_disabled(const struct gossmap *map, |
| 698 | const struct gossmap_chan *c, |
| 699 | int dir, |
| 700 | struct amount_msat amount, |
| 701 | struct payment *p) |
| 702 | { |
| 703 | if (!route_can_carry_even_disabled(map, c, dir, amount, p)) |
| 704 | return false; |
| 705 | |
| 706 | return payment_route_check(map, c, dir, amount, p); |
| 707 | } |
| 708 | |
| 709 | /* Rene Pickhardt: |
| 710 | * |
nothing calls this directly
no test coverage detected