| 90 | } |
| 91 | |
| 92 | void db_bind_preimage(struct db_stmt *stmt, int pos, const struct preimage *p) |
| 93 | { |
| 94 | db_bind_blob(stmt, pos, p->r, sizeof(struct preimage)); |
| 95 | } |
| 96 | |
| 97 | void db_bind_sha256(struct db_stmt *stmt, int pos, const struct sha256 *s) |
| 98 | { |
no test coverage detected