| 762 | } |
| 763 | |
| 764 | void psbt_output_set_unknown(const tal_t *ctx, |
| 765 | struct wally_psbt_output *out, |
| 766 | const u8 *key, |
| 767 | const void *value, |
| 768 | size_t value_len) |
| 769 | { |
| 770 | map_replace(ctx, &out->unknowns, key, value, value_len); |
| 771 | } |
| 772 | |
| 773 | /* Use the destructor to free the wally_tx */ |
| 774 | static void wally_tx_destroy(struct wally_tx *wtx) |
no test coverage detected