| 669 | } |
| 670 | |
| 671 | static char *fmt_bitcoin_tx(const tal_t *ctx, const struct bitcoin_tx *tx) |
| 672 | { |
| 673 | u8 *lin = linearize_tx(ctx, tx); |
| 674 | char *s = tal_hex(ctx, lin); |
| 675 | tal_free(lin); |
| 676 | return s; |
| 677 | } |
| 678 | |
| 679 | static char *fmt_bitcoin_txid(const tal_t *ctx, const struct bitcoin_txid *txid) |
| 680 | { |
nothing calls this directly
no test coverage detected