| 592 | } |
| 593 | |
| 594 | bool json_to_channel_id(const char *buffer, const jsmntok_t *tok, |
| 595 | struct channel_id *cid) |
| 596 | { |
| 597 | return hex_decode(buffer + tok->start, tok->end - tok->start, |
| 598 | cid, sizeof(*cid)); |
| 599 | } |
| 600 | |
| 601 | bool json_to_coin_mvt_tag(const char *buffer, const jsmntok_t *tok, |
| 602 | enum mvt_tag *tag) |
no test coverage detected