| 753 | } |
| 754 | |
| 755 | void towire_bitcoin_tx(u8 **pptr, const struct bitcoin_tx *tx) |
| 756 | { |
| 757 | u8 *lin = linearize_tx(tmpctx, tx); |
| 758 | towire_u32(pptr, tal_count(lin)); |
| 759 | towire_u8_array(pptr, lin, tal_count(lin)); |
| 760 | |
| 761 | towire_wally_psbt(pptr, tx->psbt); |
| 762 | } |
| 763 | |
| 764 | bool wally_tx_input_spends(const struct wally_tx_input *input, |
| 765 | const struct bitcoin_outpoint *outpoint) |
nothing calls this directly
no test coverage detected