| 425 | } |
| 426 | |
| 427 | struct income_event **list_income_events_all(const tal_t *ctx, struct db *db, |
| 428 | bool consolidate_fees) |
| 429 | { |
| 430 | return list_income_events(ctx, db, 0, SQLITE_MAX_UINT, |
| 431 | consolidate_fees); |
| 432 | } |
| 433 | |
| 434 | void json_add_income_event(struct json_stream *out, struct income_event *ev) |
| 435 | { |
nothing calls this directly
no test coverage detected