| 642 | } |
| 643 | |
| 644 | struct wally_psbt *json_to_psbt(const tal_t *ctx, const char *buffer, |
| 645 | const jsmntok_t *tok) |
| 646 | { |
| 647 | return psbt_from_b64(ctx, buffer + tok->start, tok->end - tok->start); |
| 648 | } |
| 649 | |
| 650 | struct tlv_onionmsg_payload_reply_path * |
| 651 | json_to_reply_path(const tal_t *ctx, const char *buffer, const jsmntok_t *tok) |
no test coverage detected