| 1100 | } |
| 1101 | |
| 1102 | bool elements_psbt_output_is_fee(const struct wally_psbt *psbt, size_t outnum) |
| 1103 | { |
| 1104 | assert(outnum < psbt->num_outputs); |
| 1105 | return chainparams->is_elements && |
| 1106 | psbt->outputs[outnum].script_len == 0; |
| 1107 | } |
| 1108 | |
| 1109 | bool psbt_set_version(struct wally_psbt *psbt, u32 version) |
| 1110 | { |
no outgoing calls
no test coverage detected