issue is NULL, or what the issue is with the argname */
| 33 | |
| 34 | /* issue is NULL, or what the issue is with the argname */ |
| 35 | static bool opt_deprecated_ok(struct lightningd *ld, |
| 36 | const char *argname, |
| 37 | const char *issue, |
| 38 | const char *start, |
| 39 | const char *end) |
| 40 | { |
| 41 | return lightningd_deprecated_in_ok(ld, ld->log, |
| 42 | ld->deprecated_ok, |
| 43 | argname, issue, |
| 44 | start, end, NULL); |
| 45 | } |
| 46 | |
| 47 | static char *opt_set_u64(const char *arg, u64 *u) |
| 48 | { |
no test coverage detected