| 533 | } |
| 534 | |
| 535 | struct onionreply *db_col_onionreply(const tal_t *ctx, |
| 536 | struct db_stmt *stmt, const char *colname) |
| 537 | { |
| 538 | struct onionreply *r = tal(ctx, struct onionreply); |
| 539 | r->contents = db_col_arr(ctx, stmt, colname, u8); |
| 540 | return r; |
| 541 | } |
| 542 | |
| 543 | void db_col_ignore(struct db_stmt *stmt, const char *colname) |
| 544 | { |
no outgoing calls
no test coverage detected