dont allow to remove wallet encryption if wallet is not encrypt issue #91

This commit is contained in:
DenioD
2020-06-04 23:12:45 +02:00
parent b1290454bd
commit 4f9c314742

View File

@@ -459,6 +459,14 @@ void MainWindow::removeWalletEncryption() {
Ui_removeencryption ed;
ed.setupUi(&d);
if (fileExists(dirwalletenc) == false) {
QMessageBox::information(this, tr("Wallet is not encrypted"),
tr("Your wallet is not encrypted with a passphrase."),
QMessageBox::Ok
);
return;
}
auto fnPasswordEdited = [=](const QString&) {
QString password = ed.txtPassword->text();
// Enable the OK button if the passwords match.