| 1705 | } |
| 1706 | |
| 1707 | static void onchain_annotate_txin(const struct bitcoin_txid *txid, u32 innum, |
| 1708 | enum wallet_tx_type type) |
| 1709 | { |
| 1710 | wire_sync_write(REQ_FD, take(towire_onchaind_annotate_txin( |
| 1711 | tmpctx, txid, innum, type))); |
| 1712 | } |
| 1713 | |
| 1714 | /* An output has been spent: see if it resolves something we care about. */ |
| 1715 | static void output_spent(struct tracked_output ***outs, |
no test coverage detected