| 620 | } |
| 621 | |
| 622 | struct command_result *timer_complete(struct command *cmd) |
| 623 | { |
| 624 | assert(cmd->type == COMMAND_TYPE_TIMER); |
| 625 | tal_free(cmd); |
| 626 | return &complete; |
| 627 | } |
| 628 | |
| 629 | struct command_result *forward_error(struct command *cmd, |
| 630 | const char *method, |
no test coverage detected