| 602 | } |
| 603 | |
| 604 | bool json_to_bitcoin_blkid(const char *buffer, const jsmntok_t *tok, |
| 605 | struct bitcoin_blkid *blkid) |
| 606 | { |
| 607 | return bitcoin_blkid_from_hex(buffer + tok->start, |
| 608 | tok->end - tok->start, blkid); |
| 609 | } |
| 610 | |
| 611 | bool json_to_outpoint(const char *buffer, const jsmntok_t *tok, |
| 612 | struct bitcoin_outpoint *op) |
nothing calls this directly
no test coverage detected