CWA-199 | fixed receive amount for empty deposit amount; added correction to xmr limits

This commit is contained in:
Oleksandr Sobol 2020-04-13 20:07:26 +03:00
parent ef750cb454
commit 99c732aab0
2 changed files with 5 additions and 3 deletions

View file

@ -68,9 +68,9 @@ class XMRTOExchangeProvider extends ExchangeProvider {
if (price > 0) {
try {
min /= price;
min = limitsFormat(min) + correction;
max /= price;
min = min/price + correction;
min = limitsFormat(min);
max = max/price - correction;
max = limitsFormat(max);
} catch (e) {
min = 0;

View file

@ -107,6 +107,7 @@ abstract class ExchangeStoreBase with Store {
if (amount == null || amount.isEmpty) {
depositAmount = '';
receiveAmount = '';
return;
}
@ -125,6 +126,7 @@ abstract class ExchangeStoreBase with Store {
if (amount == null || amount.isEmpty) {
depositAmount = '';
receiveAmount = '';
return;
}