| 158 | } |
| 159 | |
| 160 | static void node_id_from_privkey(const struct privkey *p, struct node_id *id) |
| 161 | { |
| 162 | struct pubkey k; |
| 163 | pubkey_from_privkey(p, &k); |
| 164 | node_id_from_pubkey(id, &k); |
| 165 | } |
| 166 | |
| 167 | int main(int argc, char *argv[]) |
| 168 | { |
no test coverage detected