| 188 | } |
| 189 | |
| 190 | void db_bind_timeabs(struct db_stmt *stmt, int col, struct timeabs t) |
| 191 | { |
| 192 | u64 timestamp = t.ts.tv_nsec + (((u64) t.ts.tv_sec) * ((u64) NSEC_IN_SEC)); |
| 193 | db_bind_u64(stmt, col, timestamp); |
| 194 | } |
| 195 | |
| 196 | void db_bind_tx(struct db_stmt *stmt, int col, const struct wally_tx *tx) |
| 197 | { |
no test coverage detected