| 106 | } |
| 107 | |
| 108 | void db_bind_sha256(struct db_stmt *stmt, const struct sha256 *s) |
| 109 | { |
| 110 | db_bind_blob(stmt, s->u.u8, sizeof(struct sha256)); |
| 111 | } |
| 112 | |
| 113 | void db_bind_sha256d(struct db_stmt *stmt, const struct sha256_double *s) |
| 114 | { |
no test coverage detected