| 1045 | } |
| 1046 | |
| 1047 | void wally_psbt_input_get_outpoint(const struct wally_psbt_input *in, |
| 1048 | struct bitcoin_outpoint *outpoint) |
| 1049 | { |
| 1050 | CROSS_TYPE_ASSIGNMENT(&outpoint->txid, &in->txhash); |
| 1051 | outpoint->n = in->index; |
| 1052 | } |
| 1053 | |
| 1054 | const u8 *wally_psbt_output_get_script(const tal_t *ctx, |
| 1055 | const struct wally_psbt_output *output) |
no outgoing calls
no test coverage detected