| 194 | } |
| 195 | |
| 196 | void db_bind_tx(struct db_stmt *stmt, int col, const struct wally_tx *tx) |
| 197 | { |
| 198 | u8 *ser = linearize_wtx(stmt, tx); |
| 199 | assert(ser); |
| 200 | db_bind_talarr(stmt, col, ser); |
| 201 | } |
| 202 | |
| 203 | void db_bind_psbt(struct db_stmt *stmt, int col, const struct wally_psbt *psbt) |
| 204 | { |
no test coverage detected