| 5697 | } |
| 5698 | |
| 5699 | struct db_stmt *forwarding_next(struct wallet *w, |
| 5700 | struct db_stmt *stmt) |
| 5701 | { |
| 5702 | if (!db_step(stmt)) |
| 5703 | return tal_free(stmt); |
| 5704 | |
| 5705 | return stmt; |
| 5706 | } |
| 5707 | |
| 5708 | const struct forwarding *forwarding_details(const tal_t *ctx, |
| 5709 | struct wallet *w, |
no test coverage detected