aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/add-token/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pages/add-token/util.js')
-rw-r--r--ui/app/components/pages/add-token/util.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/ui/app/components/pages/add-token/util.js b/ui/app/components/pages/add-token/util.js
deleted file mode 100644
index 579c56cc0..000000000
--- a/ui/app/components/pages/add-token/util.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import R from 'ramda'
-
-export function checkExistingAddresses (address, tokenList = []) {
- if (!address) {
- return false
- }
-
- const matchesAddress = existingToken => {
- return existingToken.address.toLowerCase() === address.toLowerCase()
- }
-
- return R.any(matchesAddress)(tokenList)
-}