Fix warnings

This commit is contained in:
Aditya Kulkarni
2019-10-26 19:25:36 -07:00
parent 3e3d04f2bf
commit 75afc2a24f
2 changed files with 6 additions and 6 deletions

View File

@@ -255,7 +255,7 @@ void Controller::updateUI(bool anyUnconfirmed) {
// Function to process reply of the listunspent and z_listunspent API calls, used below.
void Controller::processUnspent(const json& reply, QMap<QString, qint64>* balancesMap, QList<UnspentOutput>* unspentOutputs) {
auto processFn = [=](const json& array) -> bool {
auto processFn = [=](const json& array) {
for (auto& it : array) {
QString qsAddr = QString::fromStdString(it["address"]);
int block = it["created_in_block"].get<json::number_unsigned_t>();
@@ -361,10 +361,10 @@ void Controller::refreshTransactions() {
txdata.push_back(TransactionItem{
"Sent",
it["datetime"].get<json::number_unsigned_t>(),
it["datetime"].get<json::number_integer_t>(),
address,
QString::fromStdString(it["txid"]),
model->getLatestBlock() - it["block_height"].get<json::number_unsigned_t>(),
model->getLatestBlock() - it["block_height"].get<json::number_integer_t>(),
items
});
} else {
@@ -380,10 +380,10 @@ void Controller::refreshTransactions() {
TransactionItem tx{
"Receive",
it["datetime"].get<json::number_unsigned_t>(),
it["datetime"].get<json::number_integer_t>(),
address,
QString::fromStdString(it["txid"]),
model->getLatestBlock() - it["block_height"].get<json::number_unsigned_t>() + 1,
model->getLatestBlock() - it["block_height"].get<json::number_integer_t>() + 1,
items
};