Browse Source

add mobile version for balance dashboard

main
matthew 2 years ago
parent
commit
555f91147f
  1. 6
      searching-front/services/domain-watcher.ts

6
searching-front/services/domain-watcher.ts

@ -107,12 +107,12 @@ const fetchDomainInfo = async (url: string, count=0) => {
address,
}
}
console.log('There is no domain info ofr', url)
console.log('There is no domain info', url)
return null
} catch (e) {
if(count < 10){
console.log('Failed fetch domain info for', url,e)
await wait(Math.floor(Math.random() * 10))
console.log('Failed fetch domain info', count,url, e)
await wait(Math.floor(Math.random() * 10)+5)
return await fetchDomainInfo(url, count++)
}
return null

Loading…
Cancel
Save