From b53cea07b69600ab8a29fa4462d64ca9e082eae4 Mon Sep 17 00:00:00 2001 From: perfogic Date: Mon, 9 Sep 2024 15:07:43 +0700 Subject: [PATCH] chore: update delay and retryTimes --- helper/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/index.tsx b/helper/index.tsx index d8d7df3..65a3b4b 100644 --- a/helper/index.tsx +++ b/helper/index.tsx @@ -641,7 +641,7 @@ export const getAddressByEIP191 = async (isSwitchWallet?: boolean) => { return accounts[0].address; }; -export const retryOrbs = async (fn, retryTimes = 30, delay = 1000) => { +export const retryOrbs = async (fn, retryTimes = 30, delay = 2000) => { try { return await fn(); } catch (error) {