| 471 | } |
| 472 | |
| 473 | void db_col_amount_msat(struct db_stmt *stmt, const char *colname, |
| 474 | struct amount_msat *msat) |
| 475 | { |
| 476 | msat->millisatoshis = db_col_u64(stmt, colname); /* Raw: low level function */ |
| 477 | } |
| 478 | |
| 479 | void db_col_amount_sat(struct db_stmt *stmt, const char *colname, struct amount_sat *sat) |
| 480 | { |
no test coverage detected