| 133 | } |
| 134 | |
| 135 | void add_payment_hash_description(struct command *cmd, |
| 136 | struct bkpr *bkpr, |
| 137 | const struct sha256 *payment_hash, |
| 138 | const char *desc TAKES) |
| 139 | { |
| 140 | struct payment_hash_desc *phd; |
| 141 | |
| 142 | phd = new_payment_hash_description(bkpr->descriptions, |
| 143 | payment_hash, desc); |
| 144 | payment_hash_desc_datastore_update(cmd, phd); |
| 145 | } |
| 146 | |
| 147 | static struct utxo_desc * |
| 148 | new_utxo_description(struct descriptions *descriptions, |
no test coverage detected