From ba080c1ce4ab0698bbf20d824fa77f7627eb4174 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Fri, 23 Nov 2018 17:41:16 +0200 Subject: [PATCH] Cleanup (#61) --- README.md | 4 ++-- src/connection.cpp | 4 ++-- src/mainwindow.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 298454c..3bbd4eb 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ Head over to the releases page and grab the latest binary. https://github.com/ad ### Linux Extract and run the binary. ``` -tar -xvf zec-qt-wallet-v0.4.1.tar.gz -./zec-qt-wallet-v0.4.1/zec-qt-wallet +tar -xvf zec-qt-wallet-v0.4.2.tar.gz +./zec-qt-wallet-v0.4.2/zec-qt-wallet ``` ### Windows diff --git a/src/connection.cpp b/src/connection.cpp index 83cd626..37971cb 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -424,7 +424,7 @@ void ConnectionLoader::refreshZcashdState(Connection* connection, std::function< dots = 0; } this->showInformation("Your zcashd is starting up. Please wait.", status); - main->logger->write("Waiting to zcashd to come online."); + main->logger->write("Waiting for zcashd to come online."); // Refresh after one second QTimer::singleShot(1000, [=]() { this->refreshZcashdState(connection, refused); }); } @@ -488,7 +488,7 @@ QString ConnectionLoader::zcashParamsDir() { QDir().mkpath(paramsLocation.absolutePath()); } - main->logger->write("Found zcash params directory at " + paramsLocation.absolutePath()); + main->logger->write("Found Zcash params directory at " + paramsLocation.absolutePath()); return paramsLocation.absolutePath(); } diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 2b2d0e1..d2496b9 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -105,7 +105,7 @@ void MainWindow::closeEvent(QCloseEvent* event) { s.setValue("baltablegeometry", ui->balancesTable->horizontalHeader()->saveState()); s.setValue("tratablegeometry", ui->transactionsTable->horizontalHeader()->saveState()); - // Let the RPC know to shutdown any running service. + // Let the RPC know to shut down any running service. rpc->shutdownZcashd(); // Bubble up