are there pending commands on this payment? */
| 202 | |
| 203 | /* are there pending commands on this payment? */ |
| 204 | bool payment_commands_empty(const struct payment *p) |
| 205 | { |
| 206 | assert(p); |
| 207 | assert(p->cmd_array); |
| 208 | return tal_count(p->cmd_array) == 0; |
| 209 | } |
| 210 | |
| 211 | struct command *payment_command(struct payment *p) |
| 212 | { |
no outgoing calls
no test coverage detected