| 239 | } |
| 240 | |
| 241 | void db_bind_amount_sat(struct db_stmt *stmt, |
| 242 | struct amount_sat sat) |
| 243 | { |
| 244 | db_bind_u64(stmt, sat.satoshis); /* Raw: low level function */ |
| 245 | } |
| 246 | |
| 247 | void db_bind_json_escape(struct db_stmt *stmt, |
| 248 | const struct json_escape *esc) |
no test coverage detected