Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion async_substrate_interface/substrate_addons.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ async def _retry(self, method, *args, **kwargs):
try:
await self._reinstantiate_substrate(e, use_archive=use_archive)
return await method_(*args, **kwargs)
except StopAsyncIteration:
except StopIteration:
logger.error(
f"Max retries exceeded with {self.url}. No more fallback chains."
)
Expand Down
Loading