| 122 | } |
| 123 | |
| 124 | void db_bind_txid(struct db_stmt *stmt, int pos, const struct bitcoin_txid *t) |
| 125 | { |
| 126 | db_bind_sha256d(stmt, pos, &t->shad); |
| 127 | } |
| 128 | |
| 129 | void db_bind_channel_id(struct db_stmt *stmt, int pos, const struct channel_id *id) |
| 130 | { |
no test coverage detected