| 127 | } |
| 128 | |
| 129 | struct payment *payment_root(struct payment *p) |
| 130 | { |
| 131 | if (p->parent == NULL) |
| 132 | return p; |
| 133 | else |
| 134 | return payment_root(p->parent); |
| 135 | } |
| 136 | |
| 137 | static void |
| 138 | paymod_log_header(struct payment *p, const char **type, u64 *id) |
no outgoing calls
no test coverage detected