| 662 | } |
| 663 | |
| 664 | struct wally_psbt *json_to_psbt(const tal_t *ctx, const char *buffer, |
| 665 | const jsmntok_t *tok) |
| 666 | { |
| 667 | return psbt_from_b64(ctx, buffer + tok->start, tok->end - tok->start); |
| 668 | } |
| 669 | |
| 670 | bool |
| 671 | json_tok_channel_id(const char *buffer, const jsmntok_t *tok, |
no test coverage detected