diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-11-07 19:06:40 +0100 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2021-05-27 14:01:54 +0200 |
commit | 24815c6309431cb0797defaf7add1150bcf4b567 (patch) | |
tree | de34411cd292d8beab69d7cdee6399c95fbe8bc2 /src/qt/createwalletdialog.h | |
parent | 3f845ea2994f53e29abeb3fa158c35f1ee56e7e8 (diff) |
gui: wallet creation detects external signer
Diffstat (limited to 'src/qt/createwalletdialog.h')
-rw-r--r-- | src/qt/createwalletdialog.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/qt/createwalletdialog.h b/src/qt/createwalletdialog.h index 6eb79bc060..585b1461f7 100644 --- a/src/qt/createwalletdialog.h +++ b/src/qt/createwalletdialog.h @@ -9,6 +9,10 @@ class WalletModel; +#ifdef ENABLE_EXTERNAL_SIGNER +class ExternalSigner; +#endif + namespace Ui { class CreateWalletDialog; } @@ -23,6 +27,10 @@ public: explicit CreateWalletDialog(QWidget* parent); virtual ~CreateWalletDialog(); +#ifdef ENABLE_EXTERNAL_SIGNER + void setSigners(std::vector<ExternalSigner>& signers); +#endif + QString walletName() const; bool isEncryptWalletChecked() const; bool isDisablePrivateKeysChecked() const; |