| 173 | } |
| 174 | |
| 175 | static void node_id(char n, struct node_id *id) |
| 176 | { |
| 177 | struct privkey p; |
| 178 | struct pubkey k; |
| 179 | memset(&p, n, sizeof(p)); |
| 180 | pubkey_from_privkey(&p, &k); |
| 181 | node_id_from_pubkey(id, &k); |
| 182 | } |
| 183 | |
| 184 | static struct short_channel_id_dir add_connection(int store_fd, char from, char to, |
| 185 | u32 base_fee, |
no test coverage detected