We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b6dac4 commit 7d6f79cCopy full SHA for 7d6f79c
1 file changed
packages/wallet/dapp-client/src/ChainSessionManager.ts
@@ -686,9 +686,10 @@ export class ChainSessionManager {
686
return
687
} catch (err) {
688
lastError = err instanceof Error ? err : new Error(String(err))
689
- if (attempt < maxRetries) {
690
- await new Promise((resolve) => setTimeout(resolve, 1000 * attempt))
691
- }
+ }
+ if (attempt < maxRetries) {
+ console.error('Explicit session initialization failed, retrying...')
692
+ await new Promise((resolve) => setTimeout(resolve, 1000 * attempt))
693
}
694
695
if (lastError)
0 commit comments