From 555f91147f285d2c211e76109a3f58aa007a3a5a Mon Sep 17 00:00:00 2001 From: matthew Date: Wed, 19 Oct 2022 01:45:06 +0400 Subject: [PATCH] add mobile version for balance dashboard --- searching-front/services/domain-watcher.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/searching-front/services/domain-watcher.ts b/searching-front/services/domain-watcher.ts index bd7c1f4..26c8dfd 100644 --- a/searching-front/services/domain-watcher.ts +++ b/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