| 104 | } |
| 105 | |
| 106 | bool psbt_is_finalized(const struct wally_psbt *psbt) |
| 107 | { |
| 108 | size_t is_finalized; |
| 109 | int wally_err = wally_psbt_is_finalized(psbt, &is_finalized); |
| 110 | assert(wally_err == WALLY_OK); |
| 111 | return is_finalized ? true : false; |
| 112 | } |
| 113 | |
| 114 | struct wally_psbt_input *psbt_add_input(struct wally_psbt *psbt, |
| 115 | struct wally_tx_input *input, |
no outgoing calls
no test coverage detected