| 182 | } |
| 183 | |
| 184 | void psbt_rm_input(struct wally_psbt *psbt, |
| 185 | size_t remove_at) |
| 186 | { |
| 187 | int wally_err = wally_psbt_remove_input(psbt, remove_at); |
| 188 | assert(wally_err == WALLY_OK); |
| 189 | } |
| 190 | |
| 191 | struct wally_psbt_output *psbt_add_output(struct wally_psbt *psbt, |
| 192 | struct wally_tx_output *output, |
no outgoing calls