| 501 | } |
| 502 | |
| 503 | bool psbt_output_to_external(const struct wally_psbt_output *output) |
| 504 | { |
| 505 | size_t unused; |
| 506 | void *result = psbt_get_lightning(&output->unknowns, |
| 507 | PSBT_TYPE_OUTPUT_EXTERNAL, &unused); |
| 508 | return !(!result); |
| 509 | } |
| 510 | |
| 511 | bool psbt_contribs_changed(struct wally_psbt *orig, |
| 512 | struct wally_psbt *new) |
no test coverage detected