| 153 | } |
| 154 | |
| 155 | void db_bind_pubkey(struct db_stmt *stmt, int pos, const struct pubkey *pk) |
| 156 | { |
| 157 | u8 *der = tal_arr(stmt, u8, PUBKEY_CMPR_LEN); |
| 158 | pubkey_to_der(der, pk); |
| 159 | db_bind_blob(stmt, pos, der, PUBKEY_CMPR_LEN); |
| 160 | } |
| 161 | |
| 162 | void db_bind_scid(struct db_stmt *stmt, int col, |
| 163 | const struct short_channel_id *id) |
no test coverage detected