| 2667 | } |
| 2668 | |
| 2669 | struct command_result *WARN_UNUSED_RESULT |
| 2670 | aux_command_done(struct command *cmd) |
| 2671 | { |
| 2672 | assert(cmd->type == COMMAND_TYPE_AUX); |
| 2673 | tal_free(cmd); |
| 2674 | return &complete; |
| 2675 | } |
| 2676 | |
| 2677 | struct command_result *WARN_UNUSED_RESULT |
| 2678 | notification_handled(struct command *cmd) |
no test coverage detected