From 4aa1eb33b86022466207b9c0dc212aebadc86c17 Mon Sep 17 00:00:00 2001 From: DenioD <41270280+DenioD@users.noreply.github.com> Date: Thu, 4 Jun 2020 23:07:11 +0200 Subject: [PATCH] dialog box for encryption issue #95 --- src/mainwindow.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 96cc217..77eafb0 100644 --- a/src/mainwindow.cpp +++ b/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 + ); } }