Do we output this field? */
| 1015 | |
| 1016 | /* Do we output this field? */ |
| 1017 | bool lightningd_deprecated_out_ok(struct lightningd *ld, |
| 1018 | bool deprecated_apis, |
| 1019 | const char *subsys, |
| 1020 | const char *api, |
| 1021 | const char *start, |
| 1022 | const char *end) |
| 1023 | { |
| 1024 | return deprecated_ok(deprecated_apis, |
| 1025 | api_name(tmpctx, subsys, api), |
| 1026 | start, end, |
| 1027 | ld->api_begs, |
| 1028 | NULL, NULL); |
| 1029 | } |
| 1030 | |
| 1031 | struct depr_in { |
| 1032 | struct logger *log; |
no test coverage detected