| 212 | } |
| 213 | |
| 214 | void db_bind_timeabs(struct db_stmt *stmt, struct timeabs t) |
| 215 | { |
| 216 | u64 timestamp = t.ts.tv_nsec + (((u64) t.ts.tv_sec) * ((u64) NSEC_IN_SEC)); |
| 217 | db_bind_u64(stmt, timestamp); |
| 218 | } |
| 219 | |
| 220 | void db_bind_tx(struct db_stmt *stmt, const struct wally_tx *tx) |
| 221 | { |
no test coverage detected