Clang compiler

This commit is contained in:
Aditya Kulkarni
2019-10-26 19:31:59 -07:00
parent 75afc2a24f
commit 3afcf43202
3 changed files with 3 additions and 3 deletions

View File

@@ -658,7 +658,7 @@ void AppDataServer::processSendTx(QJsonObject sendTx, MainWindow* mainwindow, st
tx.fee = Settings::getMinerFee();
// Find a from address that has at least the sending amout
double amt = sendTx["amount"].toString().toDouble();
qint64 amt = Settings::getAmountFromUserDecimalStr(sendTx["amount"].toString());
auto allBalances = mainwindow->getRPC()->getModel()->getAllBalances();
QList<QPair<QString, double>> bals;
for (auto i : allBalances.keys()) {