| 4104 | } |
| 4105 | |
| 4106 | void wallet_annotate_txout(struct wallet *w, |
| 4107 | const struct bitcoin_outpoint *outpoint, |
| 4108 | enum wallet_tx_type type, u64 channel) |
| 4109 | { |
| 4110 | wallet_annotation_add(w, &outpoint->txid, outpoint->n, |
| 4111 | OUTPUT_ANNOTATION, type, channel); |
| 4112 | } |
| 4113 | |
| 4114 | void wallet_annotate_txin(struct wallet *w, const struct bitcoin_txid *txid, |
| 4115 | int innum, enum wallet_tx_type type, u64 channel) |
no test coverage detected