Merge pull request 'History: fix fiat conversion' (#36) from tobtoht/feather:history_fiat_fix into master

Reviewed-on: feather/feather#36
fix-rpath-debug
tobtoht 4 years ago
commit e362f2b45d

@ -164,7 +164,7 @@ QVariant TransactionHistoryModel::parseTransactionInfo(const TransactionInfo &tI
return QVariant("?");
double usd_amount = usd_price * tInfo.amount();
if(this->preferredFiatSign != "$")
if(this->preferredFiatSymbol != "USD")
usd_amount = AppContext::prices->convert("USD", this->preferredFiatSymbol, usd_amount);
double fiat_rounded = ceil(Utils::roundSignificant(usd_amount, 3) * 100.0) / 100.0;

Loading…
Cancel
Save