| 474 | } |
| 475 | |
| 476 | bool psbt_input_is_ours(const struct wally_psbt_input *input) |
| 477 | { |
| 478 | size_t unused; |
| 479 | void *result = psbt_get_lightning(&input->unknowns, |
| 480 | PSBT_TYPE_INPUT_MARKER, &unused); |
| 481 | return !(!result); |
| 482 | } |
| 483 | |
| 484 | bool psbt_has_our_input(const struct wally_psbt *psbt) |
| 485 | { |
no test coverage detected