| 640 | } |
| 641 | |
| 642 | static const struct node_id *payment_get_excluded_nodes(const tal_t *ctx, |
| 643 | struct payment *p) |
| 644 | { |
| 645 | struct payment *root = payment_root(p); |
| 646 | return root->excluded_nodes; |
| 647 | } |
| 648 | |
| 649 | /* FIXME: This is slow! */ |
| 650 | static bool dst_is_excluded(const struct gossmap *gossmap, |
no test coverage detected