| 146 | } |
| 147 | |
| 148 | static struct command_result * payment_start(struct payment *p) |
| 149 | { |
| 150 | assert(p); |
| 151 | p->status = PAYMENT_PENDING; |
| 152 | plugin_log(pay_plugin->plugin, LOG_DBG, "Starting renepay"); |
| 153 | p->exec_state = 0; |
| 154 | return payment_continue(p); |
| 155 | } |
| 156 | |
| 157 | static struct command_result *json_renepay(struct command *cmd, const char *buf, |
| 158 | const jsmntok_t *params) |
no test coverage detected