From e9e86f939845bf4b54bd56eeb3c458881dfe69fb Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Mon, 8 Nov 2021 07:40:01 -0800 Subject: [PATCH] fix(ipfs): Got rough auto-retry working --- src/components/admin-lte/configure/ipfs-tab/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/admin-lte/configure/ipfs-tab/index.js b/src/components/admin-lte/configure/ipfs-tab/index.js index c73fcc8..4bfd704 100644 --- a/src/components/admin-lte/configure/ipfs-tab/index.js +++ b/src/components/admin-lte/configure/ipfs-tab/index.js @@ -366,6 +366,8 @@ class IPFS extends React.Component { `Attempt ${cnt} to re-initialize wallet failed. Will try again.` ) console.log(err) + + await _this.sleep(5000) } // } while (!utxosInitialized) } while (!utxosInitialized && cnt < 10)