| 373 | } |
| 374 | |
| 375 | static struct command_result * |
| 376 | sendonion_fail(struct command *aux_cmd, const char *method, const char *buffer, |
| 377 | const jsmntok_t *toks, struct payment *payment UNUSED) |
| 378 | { |
| 379 | plugin_log(aux_cmd->plugin, LOG_DBG, "%s failed with: %.*s", method, |
| 380 | json_tok_full_len(toks), json_tok_full(buffer, toks)); |
| 381 | return aux_command_done(aux_cmd); |
| 382 | } |
| 383 | |
| 384 | struct command_result *route_sendpay_request(struct command *cmd, |
| 385 | struct route *route TAKES, |
nothing calls this directly
no test coverage detected