fix: correct function call on blacklist
This commit is contained in:
parent
d917268d64
commit
35e9c754e0
1 changed files with 3 additions and 1 deletions
|
|
@ -187,7 +187,9 @@ const Blacklist = () => {
|
|||
|
||||
const validateAddress = address => {
|
||||
try {
|
||||
return !R.isEmpty(addressDetector.detectAddress(address).matches)
|
||||
return !R.isEmpty(
|
||||
addressDetector.getSupportedCoinsForAddress(address).matches
|
||||
)
|
||||
} catch {
|
||||
return false
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue