aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-to-row/send-to-row.utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send_/send-content/send-to-row/send-to-row.utils.js')
-rw-r--r--ui/app/components/send_/send-content/send-to-row/send-to-row.utils.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/ui/app/components/send_/send-content/send-to-row/send-to-row.utils.js b/ui/app/components/send_/send-content/send-to-row/send-to-row.utils.js
deleted file mode 100644
index 6b90a9f09..000000000
--- a/ui/app/components/send_/send-content/send-to-row/send-to-row.utils.js
+++ /dev/null
@@ -1,19 +0,0 @@
-const {
- REQUIRED_ERROR,
- INVALID_RECIPIENT_ADDRESS_ERROR,
-} = require('../../send.constants')
-const { isValidAddress } = require('../../../../util')
-
-function getToErrorObject (to, toError = null) {
- if (!to) {
- toError = REQUIRED_ERROR
- } else if (!isValidAddress(to) && !toError) {
- toError = INVALID_RECIPIENT_ADDRESS_ERROR
- }
-
- return { to: toError }
-}
-
-module.exports = {
- getToErrorObject,
-}