We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63713bb commit 3069f80Copy full SHA for 3069f80
viz/account.py
@@ -50,7 +50,7 @@ def refresh(self, protocol: str = "") -> None:
50
"""Loads account object from blockchain."""
51
try:
52
account = self.blockchain_instance.rpc.get_account(self.name, protocol)
53
- except IndexError as err:
+ except Exception as err:
54
raise AccountDoesNotExistsException from err
55
56
# load json_metadata
0 commit comments