mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
b3d78ed8a1
Revert accidentally changed constants. Require defaults in ens-input, gas-fee-display and confirm screens.
20 lines
412 B
JavaScript
20 lines
412 B
JavaScript
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,
|
|
}
|