| 362 | } |
| 363 | |
| 364 | void db_col_scid(struct db_stmt *stmt, const char *colname, |
| 365 | struct short_channel_id *dest) |
| 366 | { |
| 367 | dest->u64 = db_col_u64(stmt, colname); |
| 368 | } |
| 369 | |
| 370 | struct short_channel_id * |
| 371 | db_col_short_channel_id_arr(const tal_t *ctx, struct db_stmt *stmt, const char *colname) |
no test coverage detected