diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 57c193d..73f2af4 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -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.