| 426 | } |
| 427 | |
| 428 | void json_add_bip340sig(struct json_stream *response, |
| 429 | const char *fieldname, |
| 430 | const struct bip340sig *sig) |
| 431 | { |
| 432 | json_add_hex(response, fieldname, sig->u8, sizeof(sig->u8)); |
| 433 | } |
| 434 | |
| 435 | void json_add_txid(struct json_stream *result, const char *fieldname, |
| 436 | const struct bitcoin_txid *txid) |
no test coverage detected