| 209 | } |
| 210 | |
| 211 | void db_bind_amount_msat(struct db_stmt *stmt, int pos, |
| 212 | const struct amount_msat *msat) |
| 213 | { |
| 214 | db_bind_u64(stmt, pos, msat->millisatoshis); /* Raw: low level function */ |
| 215 | } |
| 216 | |
| 217 | void db_bind_amount_sat(struct db_stmt *stmt, int pos, |
| 218 | const struct amount_sat *sat) |
no test coverage detected