Browse Source

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

pull/130/head
DenioD 4 years ago
parent
commit
4f9c314742
  1. 8
      src/mainwindow.cpp

8
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.

Loading…
Cancel
Save