| 1289 | } |
| 1290 | |
| 1291 | static char *opt_add_node_id(const char *arg, struct node_id **arr) |
| 1292 | { |
| 1293 | struct node_id n; |
| 1294 | if (!node_id_from_hexstr(arg, strlen(arg), &n)) |
| 1295 | return "Unparsable nodeid"; |
| 1296 | |
| 1297 | tal_arr_expand(arr, n); |
| 1298 | return NULL; |
| 1299 | } |
| 1300 | |
| 1301 | char *hsm_secret_arg(const tal_t *ctx, |
| 1302 | const char *arg, |
nothing calls this directly
no test coverage detected