| 538 | } |
| 539 | |
| 540 | void json_add_tx(struct json_stream *result, |
| 541 | const char *fieldname, |
| 542 | const struct bitcoin_tx *tx) |
| 543 | { |
| 544 | json_add_hex_talarr(result, fieldname, linearize_tx(tmpctx, tx)); |
| 545 | } |
| 546 | |
| 547 | void json_add_psbt(struct json_stream *stream, |
| 548 | const char *fieldname, |
nothing calls this directly
no test coverage detected