fix bug with Balances

This commit is contained in:
DenioD
2019-10-26 16:27:56 +02:00
parent 2f4e024fdc
commit f31fe35613
19 changed files with 74 additions and 77 deletions

View File

@@ -145,7 +145,7 @@ bool TxTableModel::exportToCsv(QString fileName) const {
for (int i=0; i < dat.items.length(); i++) {
total += dat.items[i].amount;
}
return Settings::getInstance()->getUSDFromhushAmount(total);
return Settings::getInstance()->getUSDFormat(total);
}
}
}