| 178 | } |
| 179 | |
| 180 | void db_bind_pubkey(struct db_stmt *stmt, const struct pubkey *pk) |
| 181 | { |
| 182 | u8 *der = tal_arr(stmt, u8, PUBKEY_CMPR_LEN); |
| 183 | pubkey_to_der(der, pk); |
| 184 | db_bind_blob(stmt, der, PUBKEY_CMPR_LEN); |
| 185 | } |
| 186 | |
| 187 | void db_bind_short_channel_id(struct db_stmt *stmt, struct short_channel_id scid) |
| 188 | { |
no test coverage detected