| 226 | } |
| 227 | |
| 228 | void psbt_rm_output(struct wally_psbt *psbt, |
| 229 | size_t remove_at) |
| 230 | { |
| 231 | int wally_err = wally_psbt_remove_output(psbt, remove_at); |
| 232 | assert(wally_err == WALLY_OK); |
| 233 | } |
| 234 | |
| 235 | void psbt_input_add_pubkey(struct wally_psbt *psbt, size_t in, |
| 236 | const struct pubkey *pubkey) |
no outgoing calls