| 450 | } |
| 451 | |
| 452 | void psbt_input_set_utxo(struct wally_psbt *psbt, size_t in, |
| 453 | const struct wally_tx *prev_tx) |
| 454 | { |
| 455 | int wally_err; |
| 456 | tal_wally_start(); |
| 457 | wally_err = wally_psbt_input_set_utxo(&psbt->inputs[in], |
| 458 | prev_tx); |
| 459 | tal_wally_end(psbt); |
| 460 | assert(wally_err == WALLY_OK); |
| 461 | } |
| 462 | |
| 463 | void psbt_input_set_outpoint(struct wally_psbt *psbt, size_t in, |
| 464 | struct bitcoin_outpoint outpoint) |
no test coverage detected