| 960 | } |
| 961 | |
| 962 | static char *opt_set_msat(const char *arg, struct amount_msat *amt) |
| 963 | { |
| 964 | if (!parse_amount_msat(amt, arg, strlen(arg))) |
| 965 | return tal_fmt(NULL, "Unable to parse millisatoshi '%s'", arg); |
| 966 | |
| 967 | return NULL; |
| 968 | } |
| 969 | |
| 970 | static char *opt_set_wumbo(struct lightningd *ld) |
| 971 | { |
nothing calls this directly
no test coverage detected