aboutsummaryrefslogtreecommitdiff
path: root/src/qt/createwalletdialog.cpp
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2019-07-11 18:21:21 -0400
committerAndrew Chow <achow101-github@achow101.com>2020-04-23 13:59:48 -0400
commit82ae02b1656819f4bd5023b8955447e1d4ea8692 (patch)
tree3b408d54d4b68c86e4bc44748c965ea9a773704e /src/qt/createwalletdialog.cpp
parentb713baa75a62335ab9c0eed9ef76a95bfec30668 (diff)
downloadbitcoin-82ae02b1656819f4bd5023b8955447e1d4ea8692.tar.xz
Be able to create new wallets with DescriptorScriptPubKeyMans as backing
Diffstat (limited to 'src/qt/createwalletdialog.cpp')
-rw-r--r--src/qt/createwalletdialog.cpp5
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();
+}