Skip to content

Commit

Permalink
static QT
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed Oct 16, 2018
1 parent 54b8481 commit da4bbfd
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ Makefile
Makefile.*
qrc_application.cpp
zcash-qt-wallet_plugin_import.cpp
workspace.code-workspace
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "mainwindow.h"
#include "settings.h"
#include "precompiled.h"

int main(int argc, char *argv[])
Expand Down
1 change: 0 additions & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ MainWindow::MainWindow(QWidget *parent) :
aboutDialog.exec();
});


// Initialize to the balances tab
ui->tabWidget->setCurrentIndex(0);

Expand Down
2 changes: 1 addition & 1 deletion src/rpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ void RPC::refreshBalances() {
);

(*allBalances)[qsAddr] = (*allBalances)[qsAddr] + it["amount"].get<json::number_float_t>();
ui->unconfirmedWarning->setVisible(anyUnconfirmed);
}
ui->unconfirmedWarning->setVisible(anyUnconfirmed);
};

// Function to create the data model and update the views, used below.
Expand Down
1 change: 0 additions & 1 deletion src/sendtab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ QString MainWindow::doSendTxValidations(QString fromAddr, QList<QPair<QString, d
zsexp.exactMatch(addr);
};


if (!matchesAnyAddr(fromAddr)) return QString("From Address is Invalid");

for (auto toAddr = toAddrs.begin(); toAddr != toAddrs.end(); toAddr++) {
Expand Down
2 changes: 1 addition & 1 deletion zcash-qt-wallet.pro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ PRECOMPILED_HEADER = src/precompiled.h
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = zcash-qt-wallet
APP_VERSION=\\\"0.1.5\\\"
APP_VERSION=\\\"0.1.6\\\"


TEMPLATE = app
Expand Down

0 comments on commit da4bbfd

Please sign in to comment.