diff --git a/.gitignore b/.gitignore index 3592afd..5310692 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ Makefile Makefile.* qrc_application.cpp zcash-qt-wallet_plugin_import.cpp +workspace.code-workspace diff --git a/README.md b/README.md index 5d1d2b9..b00f719 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ Head over to the releases page and grab the latest binary. https://github.com/ad Extract and run the binary ``` -tar -xvf zcash-qt-wallet-v.0.1.5.tar.gz -./zcash-qt-wallet-v.0.1.5/zcash-qt-wallet +tar -xvf zcash-qt-wallet-v0.1.6.tar.gz +./zcash-qt-wallet-v0.1.6/zcash-qt-wallet ``` ## Compiling from source diff --git a/src/main.cpp b/src/main.cpp index c9b79c9..d009fce 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,4 @@ #include "mainwindow.h" -#include "settings.h" #include "precompiled.h" int main(int argc, char *argv[]) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index ddb287b..110fa55 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -87,7 +87,6 @@ MainWindow::MainWindow(QWidget *parent) : aboutDialog.exec(); }); - // Initialize to the balances tab ui->tabWidget->setCurrentIndex(0); diff --git a/src/rpc.cpp b/src/rpc.cpp index 8245bc4..271bacb 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -348,8 +348,8 @@ void RPC::refreshBalances() { ); (*allBalances)[qsAddr] = (*allBalances)[qsAddr] + it["amount"].get(); - ui->unconfirmedWarning->setVisible(anyUnconfirmed); } + ui->unconfirmedWarning->setVisible(anyUnconfirmed); }; // Function to create the data model and update the views, used below. diff --git a/src/sendtab.cpp b/src/sendtab.cpp index 25708db..8c7826d 100644 --- a/src/sendtab.cpp +++ b/src/sendtab.cpp @@ -290,7 +290,6 @@ QString MainWindow::doSendTxValidations(QString fromAddr, QList