| 637 | } |
| 638 | |
| 639 | struct onionreply *db_col_onionreply(const tal_t *ctx, |
| 640 | struct db_stmt *stmt, const char *colname) |
| 641 | { |
| 642 | struct onionreply *r = tal(ctx, struct onionreply); |
| 643 | r->contents = db_col_arr(ctx, stmt, colname, u8); |
| 644 | return r; |
| 645 | } |
| 646 | |
| 647 | void db_col_ignore(struct db_stmt *stmt, const char *colname) |
| 648 | { |
no outgoing calls
no test coverage detected