diff options
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; |