Browse Source

static QT

import_zecw
Aditya Kulkarni 6 years ago
parent
commit
da4bbfdd41
  1. 1
      .gitignore
  2. 4
      README.md
  3. 1
      src/main.cpp
  4. 1
      src/mainwindow.cpp
  5. 2
      src/rpc.cpp
  6. 1
      src/sendtab.cpp
  7. 2
      zcash-qt-wallet.pro

1
.gitignore

@ -12,3 +12,4 @@ Makefile
Makefile.*
qrc_application.cpp
zcash-qt-wallet_plugin_import.cpp
workspace.code-workspace

4
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

1
src/main.cpp

@ -1,5 +1,4 @@
#include "mainwindow.h"
#include "settings.h"
#include "precompiled.h"
int main(int argc, char *argv[])

1
src/mainwindow.cpp

@ -87,7 +87,6 @@ MainWindow::MainWindow(QWidget *parent) :
aboutDialog.exec();
});
// Initialize to the balances tab
ui->tabWidget->setCurrentIndex(0);

2
src/rpc.cpp

@ -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.

1
src/sendtab.cpp

@ -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++) {

2
zcash-qt-wallet.pro

@ -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

Loading…
Cancel
Save