diff --git a/src/controller.cpp b/src/controller.cpp index 31df411..1c94ead 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -387,13 +387,11 @@ void Controller::refreshTransactions() { address = (it["address"].is_null() ? "" : QString::fromStdString(it["address"])); model->markAddressUsed(address); - QString memo; + QString memo; if (!it["memo"].is_null()) { memo = QString::fromStdString(it["memo"]); } - - items.push_back(TransactionItemDetail{ address, CAmount::fromqint64(it["amount"].get()), diff --git a/src/sendtab.cpp b/src/sendtab.cpp index fc6790a..9db07e5 100644 --- a/src/sendtab.cpp +++ b/src/sendtab.cpp @@ -679,8 +679,6 @@ void MainWindow::sendButton() { } QString MainWindow::doSendTxValidations(Tx tx) { - - for (auto toAddr : tx.toAddrs) { if (!Settings::isValidAddress(toAddr.addr)) { QString addr = (toAddr.addr.length() > 100 ? toAddr.addr.left(100) + "..." : toAddr.addr); diff --git a/src/txtablemodel.cpp b/src/txtablemodel.cpp index 9d86172..c3df6aa 100644 --- a/src/txtablemodel.cpp +++ b/src/txtablemodel.cpp @@ -150,14 +150,14 @@ bool TxTableModel::exportToCsv(QString fileName) const { } } - if (role == Qt::DecorationRole && index.column() == 0) { + if (role == Qt::DecorationRole && index.column() == 0) { bool hasMemo = false; for (int i=0; i < dat.items.length(); i++) { if (!dat.items[i].memo.isEmpty()) { hasMemo = true; } } - + // If the memo is a Payment URI, then show a payment request icon if (dat.items.length() == 1 && dat.items[0].memo.startsWith("hush:")) { QIcon icon(":/icons/res/paymentreq.gif"); diff --git a/src/version.h b/src/version.h index d40071e..3e7162c 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define APP_VERSION "0.7.9" +#define APP_VERSION "1.0-beta1"