|
|
@ -105,6 +105,7 @@ AddTokenScreen.prototype.tokenAddressDidChange = function (e) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
AddTokenScreen.prototype.checkExistingAddresses = function (address) { |
|
|
|
AddTokenScreen.prototype.checkExistingAddresses = function (address) { |
|
|
|
|
|
|
|
if (!address) return false |
|
|
|
const tokensList = this.props.tokens |
|
|
|
const tokensList = this.props.tokens |
|
|
|
const matchesAddress = existingToken => { |
|
|
|
const matchesAddress = existingToken => { |
|
|
|
return existingToken.address.toLowerCase() === address.toLowerCase() |
|
|
|
return existingToken.address.toLowerCase() === address.toLowerCase() |
|
|
|