| 412 | } |
| 413 | |
| 414 | static struct command_result *cancelrecurringinvoice_done(struct command *cmd, |
| 415 | struct sent *sent) |
| 416 | { |
| 417 | return command_success(cmd, |
| 418 | json_out_obj(cmd, "bolt12", |
| 419 | invrequest_encode(tmpctx, sent->invreq))); |
| 420 | } |
| 421 | |
| 422 | static struct command_result *sendonionmsg_done(struct command *cmd, |
| 423 | const char *method UNUSED, |
no test coverage detected