| 530 | } |
| 531 | |
| 532 | bool psbt_has_our_input(const struct wally_psbt *psbt) |
| 533 | { |
| 534 | for (size_t i = 0; i < psbt->num_inputs; i++) { |
| 535 | if (psbt_input_is_ours(&psbt->inputs[i])) |
| 536 | return true; |
| 537 | } |
| 538 | |
| 539 | return false; |
| 540 | } |
| 541 | |
| 542 | void psbt_output_mark_as_external(const tal_t *ctx, |
| 543 | struct wally_psbt_output *output) |
no test coverage detected