| 150 | } |
| 151 | |
| 152 | static struct command_result *del_failed(struct command *cmd, |
| 153 | const char *buf, |
| 154 | const jsmntok_t *result, |
| 155 | struct del_data *del_data) |
| 156 | { |
| 157 | struct clean_info *cinfo = del_data->cinfo; |
| 158 | |
| 159 | plugin_log(plugin, LOG_UNUSUAL, "%s del failed: %.*s", |
| 160 | subsystem_to_str(del_data->subsystem), |
| 161 | json_tok_full_len(result), |
| 162 | json_tok_full(buf, result)); |
| 163 | tal_free(del_data); |
| 164 | return clean_finished_one(cinfo); |
| 165 | } |
| 166 | |
| 167 | static struct out_req *del_request_start(const char *method, |
| 168 | struct clean_info *cinfo, |
nothing calls this directly
no test coverage detected