Skip to content

Commit

Permalink
Merge pull request #1037 from permaweb/jfrain99/add-wallet-retries
Browse files Browse the repository at this point in the history
fix(mu): add retries to iswallet to help with mistaken wallets
  • Loading branch information
jfrain99 authored Oct 15, 2024
2 parents ec01fed + 16f59af commit e208844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/mu/src/domain/clients/gateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function isWalletWith ({
walletFetch(joinUrl({ url: ARWEAVE_URL, path: `/${id}` }), { method: 'HEAD' })
.then(okRes),
{
maxRetries: 3,
maxRetries: 6,
delay: 500,
log: logger,
logId,
Expand Down

0 comments on commit e208844

Please sign in to comment.