aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/external_signer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet/external_signer.cpp')
-rw-r--r--src/wallet/external_signer.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/external_signer.cpp b/src/wallet/external_signer.cpp
index c06b178bc1..ec915d5c5e 100644
--- a/src/wallet/external_signer.cpp
+++ b/src/wallet/external_signer.cpp
@@ -55,4 +55,9 @@ bool ExternalSigner::Enumerate(const std::string& command, std::vector<ExternalS
return true;
}
+UniValue ExternalSigner::GetDescriptors(int account)
+{
+ return RunCommandParseJSON(m_command + " --fingerprint \"" + m_fingerprint + "\"" + NetworkArg() + " getdescriptors --account " + strprintf("%d", account));
+}
+
#endif