| 233 | } |
| 234 | |
| 235 | void db_bind_amount_msat(struct db_stmt *stmt, |
| 236 | struct amount_msat msat) |
| 237 | { |
| 238 | db_bind_u64(stmt, msat.millisatoshis); /* Raw: low level function */ |
| 239 | } |
| 240 | |
| 241 | void db_bind_amount_sat(struct db_stmt *stmt, |
| 242 | struct amount_sat sat) |
no test coverage detected