This commit is contained in:
jitendra 2018-12-21 13:25:58 +05:30
parent ae40692084
commit 17480d8b67
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ class Core
if (null === $exchangeRate)
return $amount;
return (float) round($amount * $exchangeRate->rate);
return (float) $amount * $exchangeRate->rate;
}
/**