| 165 | } |
| 166 | |
| 167 | void add_utxo_description(struct command *cmd, |
| 168 | struct bkpr *bkpr, |
| 169 | const struct bitcoin_outpoint *outpoint, |
| 170 | const char *desc TAKES) |
| 171 | { |
| 172 | struct utxo_desc *ud; |
| 173 | |
| 174 | ud = new_utxo_description(bkpr->descriptions, outpoint, desc); |
| 175 | utxo_desc_datastore_update(cmd, ud); |
| 176 | } |
| 177 | |
| 178 | static void memleak_scan_utxo_desc_htable(struct htable *memtable, |
| 179 | struct utxo_desc_htable *ht) |
no test coverage detected