| 171 | } |
| 172 | |
| 173 | struct payment *payment_root(struct payment *p) |
| 174 | { |
| 175 | if (p->parent == NULL) |
| 176 | return p; |
| 177 | else |
| 178 | return payment_root(p->parent); |
| 179 | } |
| 180 | |
| 181 | static const char *paymod_log_header(const tal_t *ctx, |
| 182 | struct payment *p) |
no outgoing calls
no test coverage detected