mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
Merge pull request 'History: fix fiat conversion' (#36) from tobtoht/feather:history_fiat_fix into master
Reviewed-on: https://git.wownero.com/feather/feather/pulls/36
This commit is contained in:
commit
e362f2b45d
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue