| 2173 | } |
| 2174 | |
| 2175 | u64 sendpay_index_update_status(struct lightningd *ld, |
| 2176 | const struct sha256 *payment_hash, |
| 2177 | u64 partid, |
| 2178 | u64 groupid, |
| 2179 | enum payment_status status) |
| 2180 | { |
| 2181 | return sendpay_index_inc(ld, payment_hash, partid, groupid, status, |
| 2182 | WAIT_INDEX_UPDATED); |
| 2183 | } |
| 2184 | |
| 2185 | static struct command_result *param_payment_status(struct command *cmd, |
| 2186 | const char *name, |
nothing calls this directly
no test coverage detected