Be able to create new wallets with DescriptorScriptPubKeyMans as backing

This commit is contained in:
Andrew Chow
2019-07-11 18:21:21 -04:00
parent b713baa75a
commit 82ae02b165
8 changed files with 87 additions and 11 deletions

View File

@@ -226,6 +226,9 @@ void CreateWalletActivity::createWallet()
if (m_create_wallet_dialog->isMakeBlankWalletChecked()) {
flags |= WALLET_FLAG_BLANK_WALLET;
}
if (m_create_wallet_dialog->isDescriptorWalletChecked()) {
flags |= WALLET_FLAG_DESCRIPTORS;
}
QTimer::singleShot(500, worker(), [this, name, flags] {
WalletCreationStatus status;