| 170 | } |
| 171 | |
| 172 | static void node_id_from_privkey(const struct privkey *p, struct node_id *id) |
| 173 | { |
| 174 | struct pubkey k; |
| 175 | pubkey_from_privkey(p, &k); |
| 176 | node_id_from_pubkey(id, &k); |
| 177 | } |
| 178 | |
| 179 | int main(int argc, char *argv[]) |
| 180 | { |
no test coverage detected