| 685 | } |
| 686 | |
| 687 | static char *fmt_bitcoin_outpoint(const tal_t *ctx, |
| 688 | const struct bitcoin_outpoint *outpoint) |
| 689 | { |
| 690 | return tal_fmt(ctx, "%s:%u", |
| 691 | fmt_bitcoin_txid(tmpctx, &outpoint->txid), |
| 692 | outpoint->n); |
| 693 | } |
| 694 | |
| 695 | static char *fmt_wally_tx(const tal_t *ctx, const struct wally_tx *tx) |
| 696 | { |
nothing calls this directly
no test coverage detected