| 101 | } |
| 102 | |
| 103 | void db_bind_preimage(struct db_stmt *stmt, const struct preimage *p) |
| 104 | { |
| 105 | db_bind_blob(stmt, p->r, sizeof(struct preimage)); |
| 106 | } |
| 107 | |
| 108 | void db_bind_sha256(struct db_stmt *stmt, const struct sha256 *s) |
| 109 | { |
no test coverage detected