| 529 | } |
| 530 | |
| 531 | bool json_to_node_id(const char *buffer, const jsmntok_t *tok, |
| 532 | struct node_id *id) |
| 533 | { |
| 534 | return node_id_from_hexstr(buffer + tok->start, |
| 535 | tok->end - tok->start, id); |
| 536 | } |
| 537 | |
| 538 | bool json_to_pubkey(const char *buffer, const jsmntok_t *tok, |
| 539 | struct pubkey *pubkey) |
no test coverage detected