| 65 | } |
| 66 | |
| 67 | UniValue ExternalSigner::GetDescriptors(const int account) |
| 68 | { |
| 69 | return RunCommandParseJSON(m_command + " --fingerprint \"" + m_fingerprint + "\"" + NetworkArg() + " getdescriptors --account " + strprintf("%d", account)); |
| 70 | } |
| 71 | |
| 72 | bool ExternalSigner::SignTransaction(PartiallySignedTransaction& psbtx, std::string& error) |
| 73 | { |
no test coverage detected