| 442 | } |
| 443 | |
| 444 | void json_add_bip340sig(struct json_stream *response, |
| 445 | const char *fieldname, |
| 446 | const struct bip340sig *sig) |
| 447 | { |
| 448 | json_add_hex(response, fieldname, sig->u8, sizeof(sig->u8)); |
| 449 | } |
| 450 | |
| 451 | void json_add_txid(struct json_stream *result, const char *fieldname, |
| 452 | const struct bitcoin_txid *txid) |
no test coverage detected