| 601 | } |
| 602 | |
| 603 | void json_add_tx(struct json_stream *result, |
| 604 | const char *fieldname, |
| 605 | const struct bitcoin_tx *tx) |
| 606 | { |
| 607 | json_add_hex_talarr(result, fieldname, linearize_tx(tmpctx, tx)); |
| 608 | } |
| 609 | |
| 610 | void json_add_psbt(struct json_stream *stream, |
| 611 | const char *fieldname, |
no test coverage detected