| 292 | } |
| 293 | |
| 294 | void psbt_rm_output(struct wally_psbt *psbt, |
| 295 | size_t remove_at) |
| 296 | { |
| 297 | int wally_err = wally_psbt_remove_output(psbt, remove_at); |
| 298 | assert(wally_err == WALLY_OK); |
| 299 | } |
| 300 | |
| 301 | void psbt_input_add_pubkey(struct wally_psbt *psbt, size_t in, |
| 302 | const struct pubkey *pubkey, bool is_taproot) |
no outgoing calls