| 252 | } |
| 253 | |
| 254 | void psbt_rm_input(struct wally_psbt *psbt, |
| 255 | size_t remove_at) |
| 256 | { |
| 257 | int wally_err = wally_psbt_remove_input(psbt, remove_at); |
| 258 | assert(wally_err == WALLY_OK); |
| 259 | } |
| 260 | |
| 261 | struct wally_psbt_output *psbt_add_output(struct wally_psbt *psbt, |
| 262 | struct wally_tx_output *output, |
no outgoing calls