mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
From and To field cannot be the same
This commit is contained in:
parent
0d522139ba
commit
ff7e7db9ec
@ -180,13 +180,19 @@ SendTransactionScreen.prototype.renderFromRow = function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SendTransactionScreen.prototype.handleToChange = function (to) {
|
SendTransactionScreen.prototype.handleToChange = function (to) {
|
||||||
const { updateSendTo, updateSendErrors } = this.props
|
const {
|
||||||
|
updateSendTo,
|
||||||
|
updateSendErrors,
|
||||||
|
from: {address: from},
|
||||||
|
} = this.props
|
||||||
let toError = null
|
let toError = null
|
||||||
|
|
||||||
if (!to) {
|
if (!to) {
|
||||||
toError = 'Required'
|
toError = 'Required'
|
||||||
} else if (!isValidAddress(to)) {
|
} else if (!isValidAddress(to)) {
|
||||||
toError = 'Recipient address is invalid.'
|
toError = 'Recipient address is invalid'
|
||||||
|
} else if (to === from) {
|
||||||
|
toError = 'From and To address cannot be the same'
|
||||||
}
|
}
|
||||||
|
|
||||||
updateSendTo(to)
|
updateSendTo(to)
|
||||||
|
Loading…
Reference in New Issue
Block a user