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

wownero
Oleksandr Sobol 4 years ago
parent ef750cb454
commit 99c732aab0

@ -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;

@ -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;
}

Loading…
Cancel
Save