| 549 | } |
| 550 | |
| 551 | bool psbt_output_to_external(const struct wally_psbt_output *output) |
| 552 | { |
| 553 | size_t unused; |
| 554 | void *result = psbt_get_lightning(&output->unknowns, |
| 555 | PSBT_TYPE_OUTPUT_EXTERNAL, &unused); |
| 556 | return !(!result); |
| 557 | } |
| 558 | |
| 559 | /* FIXME: both PSBT should be const */ |
| 560 | bool psbt_contribs_changed(struct wally_psbt *orig, |
no test coverage detected