| 163 | } |
| 164 | |
| 165 | u64 flows_worst_delay(struct flow **flows) |
| 166 | { |
| 167 | u64 maxdelay = 0; |
| 168 | for (size_t i = 0; i < tal_count(flows); i++) { |
| 169 | u64 delay = flow_delay(flows[i]); |
| 170 | if (delay > maxdelay) |
| 171 | maxdelay = delay; |
| 172 | } |
| 173 | return maxdelay; |
| 174 | } |
| 175 | |
| 176 | const char *fmt_flows_step_scid(const tal_t *ctx, |
| 177 | const struct route_query *rq, |
no test coverage detected