diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-09-16 19:01:04 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2021-05-27 14:01:54 +0200 |
commit | 62ac119f919ae1160ed67af796f24b78025fa8e3 (patch) | |
tree | 59484f351df0e3755c13ad077048a7db4ccf45a6 /src/interfaces | |
parent | 450cb40a344605dda3bcc39495c35869580b9fc2 (diff) |
gui: display address on external signer
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/wallet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index 988e59b65a..f7e02e6ad4 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -258,6 +258,9 @@ public: // Return whether private keys enabled. virtual bool privateKeysDisabled() = 0; + // Return whether wallet uses an external signer. + virtual bool hasExternalSigner() = 0; + // Get default address type. virtual OutputType getDefaultAddressType() = 0; |