| 477 | } |
| 478 | |
| 479 | void db_col_amount_sat(struct db_stmt *stmt, const char *colname, struct amount_sat *sat) |
| 480 | { |
| 481 | sat->satoshis = db_col_u64(stmt, colname); /* Raw: low level function */ |
| 482 | } |
| 483 | |
| 484 | struct json_escape *db_col_json_escape(const tal_t *ctx, |
| 485 | struct db_stmt *stmt, const char *colname) |
no test coverage detected