| 1094 | } |
| 1095 | |
| 1096 | static u64 psbt_output_amount(const struct wally_psbt *psbt, size_t index) |
| 1097 | { |
| 1098 | if (psbt->version == WALLY_PSBT_VERSION_0) |
| 1099 | return psbt->tx->outputs[index].satoshi; |
| 1100 | return psbt->outputs[index].amount; |
| 1101 | } |
| 1102 | |
| 1103 | static size_t psbt_output_scriptlen(const struct wally_psbt *psbt, size_t index) |
| 1104 | { |