Browse Source

Merge pull request #81 from MyHush/denio

few fixes
pull/83/head
Denio 4 years ago
committed by GitHub
parent
commit
20ce154276
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      src/controller.cpp
  2. 1
      src/recurring.cpp

20
src/controller.cpp

@ -505,14 +505,6 @@ if (inputFile9.open(QIODevice::ReadOnly))
}
inputFile9.close();
}
// For each addr/amt/memo, construct the JSON and also build the confirm dialog box
for (int i=0; i < tx.toAddrs.size(); i++) {
auto toAddr = tx.toAddrs[i];
rec["address"] = toAddr.addr.toStdString();
rec["amount"] = toAddr.amount.toqint64();
if (Settings::isZAddress(toAddr.addr) && !toAddr.memo.trimmed().isEmpty())
rec["memo"] = toAddr.memo.toStdString();
dust["amount"] = 0;
dust["memo"] = "";
@ -534,6 +526,16 @@ if (inputFile9.open(QIODevice::ReadOnly))
dust8["memo"] = "";
dust9["amount"] = 0;
dust9["memo"] = "";
// For each addr/amt/memo, construct the JSON and also build the confirm dialog box
for (int i=0; i < tx.toAddrs.size(); i++) {
auto toAddr = tx.toAddrs[i];
rec["address"] = toAddr.addr.toStdString();
rec["amount"] = toAddr.amount.toqint64();
if (Settings::isZAddress(toAddr.addr) && !toAddr.memo.trimmed().isEmpty())
rec["memo"] = toAddr.memo.toStdString();
}
int decider = qrand() % ((100 + 1)-1)+ 1;// random int between 1 and 100
@ -549,7 +551,7 @@ if (inputFile9.open(QIODevice::ReadOnly))
std::shuffle(allRecepients.begin(),allRecepients.end(),std::random_device());
}
}
allRecepients.push_back(rec) ;
}

1
src/recurring.cpp

@ -106,6 +106,7 @@ QString RecurringPaymentInfo::getAmountPretty() const {
} else if (Settings::getInstance()->get_currency_name() == "AUD") {
return currency == "AUD" ? amount.toDecimalAUDString() : amount.toDecimalhushString();
}
else return currency == "USD" ? amount.toDecimalUSDString() : amount.toDecimalhushString();
}
QString RecurringPaymentInfo::getScheduleDescription() const {

Loading…
Cancel
Save