diff --git a/src/views/Send.vue b/src/views/Send.vue index a051a661d..a55923126 100644 --- a/src/views/Send.vue +++ b/src/views/Send.vue @@ -34,7 +34,7 @@
- +
@@ -77,13 +77,13 @@ export default { return cryptoassets[this.asset.toLowerCase()].isValidAddress(this.sendAddress) }, addressError () { - if (!this.isValidAddress) return 'Address invalid.' + if (!this.isValidAddress) return 'Wrong format. Please check the address.' return null }, amountError () { const sendAmount = BN(this.sendAmount) if (sendAmount.gt(this.balance)) return 'Amount exceeds available balance.' - if (this.asset === 'ETH' && sendAmount.eq(this.balance)) return 'Can\'t send full balance. Subtract enough for fee.' + if (this.asset === 'ETH' && sendAmount.eq(this.balance)) return 'To account for the fee, lower this amount.' return null }, canSend () { diff --git a/src/views/Swap.vue b/src/views/Swap.vue index 50b78568e..12ca44657 100644 --- a/src/views/Swap.vue +++ b/src/views/Swap.vue @@ -154,7 +154,7 @@ export default { const amount = BN(this.safeAmount) if (amount.gt(this.balance)) return 'Amount exceeds available balance.' - if (this.asset === 'ETH' && amount.eq(this.balance)) return 'Can\'t swap full balance. Subtract enough for fee.' + if (this.asset === 'ETH' && amount.eq(this.balance)) return 'To account for the fee, lower this amount.' if (amount.gt(this.max)) return 'Please reduce amount. It exceeds maximum.' if (amount.lt(this.min)) return 'Please increase amount. It is below minimum.'