| 5207 | } |
| 5208 | |
| 5209 | void wallet_annotate_txout(struct wallet *w, |
| 5210 | const struct bitcoin_outpoint *outpoint, |
| 5211 | enum wallet_tx_type type, u64 channel) |
| 5212 | { |
| 5213 | wallet_annotation_add(w, &outpoint->txid, outpoint->n, |
| 5214 | OUTPUT_ANNOTATION, type, channel); |
| 5215 | } |
| 5216 | |
| 5217 | void wallet_annotate_txin(struct wallet *w, const struct bitcoin_txid *txid, |
| 5218 | int innum, enum wallet_tx_type type, u64 channel) |
no test coverage detected