| 829 | */ |
| 830 | |
| 831 | static struct command_result *sleep_done(struct command *cmd, struct payment *payment) |
| 832 | { |
| 833 | struct command_result *ret; |
| 834 | payment->waitresult_timer = NULL; |
| 835 | ret = timer_complete(cmd); |
| 836 | payment_continue(payment); |
| 837 | return ret; |
| 838 | } |
| 839 | |
| 840 | static struct command_result *sleep_cb(struct payment *payment) |
| 841 | { |
nothing calls this directly
no test coverage detected