mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
GUI: Force descriptor wallets when BDB is not compiled
This commit is contained in:
@@ -51,12 +51,15 @@ CreateWalletDialog::CreateWalletDialog(QWidget* parent) :
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
#ifndef USE_SQLITE
|
#ifndef USE_SQLITE
|
||||||
ui->descriptor_checkbox->setToolTip(tr("Compiled without sqlite support (required for descriptor wallets)"));
|
ui->descriptor_checkbox->setToolTip(tr("Compiled without sqlite support (required for descriptor wallets)"));
|
||||||
ui->descriptor_checkbox->setEnabled(false);
|
ui->descriptor_checkbox->setEnabled(false);
|
||||||
ui->descriptor_checkbox->setChecked(false);
|
ui->descriptor_checkbox->setChecked(false);
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef USE_BDB
|
||||||
|
ui->descriptor_checkbox->setEnabled(false);
|
||||||
|
ui->descriptor_checkbox->setChecked(true);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
CreateWalletDialog::~CreateWalletDialog()
|
CreateWalletDialog::~CreateWalletDialog()
|
||||||
|
|||||||
Reference in New Issue
Block a user