diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-07-11 18:21:21 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-04-23 13:59:48 -0400 |
commit | 82ae02b1656819f4bd5023b8955447e1d4ea8692 (patch) | |
tree | 3b408d54d4b68c86e4bc44748c965ea9a773704e /src/qt/createwalletdialog.cpp | |
parent | b713baa75a62335ab9c0eed9ef76a95bfec30668 (diff) |
Be able to create new wallets with DescriptorScriptPubKeyMans as backing
Diffstat (limited to 'src/qt/createwalletdialog.cpp')
-rw-r--r-- | src/qt/createwalletdialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/createwalletdialog.cpp b/src/qt/createwalletdialog.cpp index 8e6474b0d4..5056e487fc 100644 --- a/src/qt/createwalletdialog.cpp +++ b/src/qt/createwalletdialog.cpp @@ -60,3 +60,8 @@ bool CreateWalletDialog::isMakeBlankWalletChecked() const { return ui->blank_wallet_checkbox->isChecked(); } + +bool CreateWalletDialog::isDescriptorWalletChecked() const +{ + return ui->descriptor_checkbox->isChecked(); +} |