| 215 | } |
| 216 | |
| 217 | void db_bind_amount_sat(struct db_stmt *stmt, int pos, |
| 218 | const struct amount_sat *sat) |
| 219 | { |
| 220 | db_bind_u64(stmt, pos, sat->satoshis); /* Raw: low level function */ |
| 221 | } |
| 222 | |
| 223 | void db_bind_json_escape(struct db_stmt *stmt, int pos, |
| 224 | const struct json_escape *esc) |
no test coverage detected