| 534 | } |
| 535 | |
| 536 | bool json_to_node_id(const char *buffer, const jsmntok_t *tok, |
| 537 | struct node_id *id) |
| 538 | { |
| 539 | return node_id_from_hexstr(buffer + tok->start, |
| 540 | tok->end - tok->start, id); |
| 541 | } |
| 542 | |
| 543 | bool json_to_pubkey(const char *buffer, const jsmntok_t *tok, |
| 544 | struct pubkey *pubkey) |
no test coverage detected