| 70 | } |
| 71 | |
| 72 | UniValue ExternalSigner::GetDescriptors(const int account) |
| 73 | { |
| 74 | return RunCommandParseJSON(Cat(m_command, Cat(Cat({"--fingerprint", m_fingerprint}, NetworkArg()), {"getdescriptors", "--account", strprintf("%d", account)})), ""); |
| 75 | } |
| 76 | |
| 77 | bool ExternalSigner::SignTransaction(PartiallySignedTransaction& psbtx, std::string& error) |
| 78 | { |
no test coverage detected