fix: correct function call on blacklist

This commit is contained in:
Rafael 2024-11-29 15:07:35 +00:00
parent d917268d64
commit 35e9c754e0

View file

@ -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
}