| 8 | #include <plugins/funder_policy.h> |
| 9 | |
| 10 | const char *funder_opt_name(enum funder_opt opt) |
| 11 | { |
| 12 | switch (opt) { |
| 13 | case MATCH: |
| 14 | return "match"; |
| 15 | case AVAILABLE: |
| 16 | return "available"; |
| 17 | case FIXED: |
| 18 | return "fixed"; |
| 19 | } |
| 20 | abort(); |
| 21 | } |
| 22 | |
| 23 | char *funding_option(struct command *cmd, const char *arg, bool check_only, enum funder_opt *opt) |
| 24 | { |
no test coverage detected