Browse Source

dialog box for encryption issue #95

pull/130/head
DenioD 4 years ago
parent
commit
4aa1eb33b8
  1. 5
      src/mainwindow.cpp

5
src/mainwindow.cpp

@ -446,6 +446,11 @@ void MainWindow::encryptWallet() {
QFile address(dir.filePath("addresslabels.dat"));
wallet.rename(dirwalletbackup);
address.rename(dir.filePath("addresslabels.datBackup"));
QMessageBox::information(this, tr("Wallet encryption Success"),
QString("Successfully encrypt your wallet"),
QMessageBox::Ok
);
}
}

Loading…
Cancel
Save