| 1101 | } |
| 1102 | |
| 1103 | static size_t psbt_output_scriptlen(const struct wally_psbt *psbt, size_t index) |
| 1104 | { |
| 1105 | if (psbt->version == WALLY_PSBT_VERSION_0) |
| 1106 | return psbt->tx->outputs[index].script_len; |
| 1107 | return psbt->outputs[index].script_len; |
| 1108 | } |
| 1109 | |
| 1110 | static const u8 *psbt_output_script(const struct wally_psbt *psbt, size_t index) |
| 1111 | { |