| 218 | } |
| 219 | |
| 220 | void db_bind_tx(struct db_stmt *stmt, const struct wally_tx *tx) |
| 221 | { |
| 222 | u8 *ser = linearize_wtx(stmt, tx); |
| 223 | assert(ser); |
| 224 | db_bind_talarr(stmt, ser); |
| 225 | } |
| 226 | |
| 227 | void db_bind_psbt(struct db_stmt *stmt, const struct wally_psbt *psbt) |
| 228 | { |
no test coverage detected