| 235 | } |
| 236 | |
| 237 | bool PSBTInputSigned(PSBTInput& input) |
| 238 | { |
| 239 | return !input.final_script_sig.empty() || !input.final_script_witness.IsNull(); |
| 240 | } |
| 241 | |
| 242 | bool SignPSBTInput(const SigningProvider& provider, PartiallySignedTransaction& psbt, SignatureData& sigdata, int index, bool no_forkid, int sighash) |
| 243 | { |
no test coverage detected