| 138 | }; |
| 139 | |
| 140 | static struct command_result *del_done(struct command *cmd, |
| 141 | const char *buf, |
| 142 | const jsmntok_t *result, |
| 143 | struct del_data *del_data) |
| 144 | { |
| 145 | struct clean_info *cinfo = del_data->cinfo; |
| 146 | |
| 147 | cinfo->num_cleaned[del_data->subsystem]++; |
| 148 | tal_free(del_data); |
| 149 | return clean_finished_one(cinfo); |
| 150 | } |
| 151 | |
| 152 | static struct command_result *del_failed(struct command *cmd, |
| 153 | const char *buf, |
nothing calls this directly
no test coverage detected