coinswitchAmountDue always returning 1.025 possible fix

This commit is contained in:
Amit Singh
2019-06-13 12:14:28 +05:30
parent 77338c6054
commit 4fa6c9dc3d

View File

@@ -182,7 +182,7 @@
computed: {
coinswitchAmountDue: function() {
return this.srvModel.coinSwitchAmountMarkupPercentage
? (1 + (this.srvModel.coinSwitchAmountMarkupPercentage / 100))
? this.srvModel.btcDue * (1 + (this.srvModel.coinSwitchAmountMarkupPercentage / 100))
: this.srvModel.btcDue;
}
}