| 1430 | } |
| 1431 | |
| 1432 | static bool json_to_bip340sig(const char *buffer, const jsmntok_t *tok, |
| 1433 | struct bip340sig *sig) |
| 1434 | { |
| 1435 | return hex_decode(buffer + tok->start, tok->end - tok->start, |
| 1436 | sig->u8, sizeof(sig->u8)); |
| 1437 | } |
| 1438 | |
| 1439 | static struct command_result *payersign_done(struct command *cmd, |
| 1440 | const char *buf, |
no test coverage detected