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
3 changes: 3 additions & 0 deletions bittensor_cli/src/commands/wallets.py
Original file line number Diff line number Diff line change
Expand Up @@ -852,6 +852,9 @@ async def wallet_list(wallet_path: str, json_output: bool):
except KeyFileError:
hkey_ss58 = hkey.get_hotkeypub().ss58_address
pub_only = True
except AttributeError:
hkey_ss58 = hkey.hotkey.ss58_address
pub_only = False
try:
data = (
f"[bold red]Hotkey[/bold red] [green]{hkey.hotkey_str}[/green] "
Expand Down
Loading