| 621 | } |
| 622 | |
| 623 | bool json_to_channel_id(const char *buffer, const jsmntok_t *tok, |
| 624 | struct channel_id *cid) |
| 625 | { |
| 626 | return hex_decode(buffer + tok->start, tok->end - tok->start, |
| 627 | cid, sizeof(*cid)); |
| 628 | } |
| 629 | |
| 630 | bool json_to_coin_mvt_tag(const char *buffer, const jsmntok_t *tok, |
| 631 | enum mvt_tag *tag) |
no test coverage detected