Skip to content

Commit

Permalink
- fix overview path error
Browse files Browse the repository at this point in the history
  • Loading branch information
Snedashkovsky committed Feb 15, 2024
1 parent 8dc3ab5 commit 88f6ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cybertensor/commands/overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def run(cli: "cybertensor.cli", max_len_netuids: int = 5, max_len_keys: int = 5)

all_wallet_names = set([wallet.name for wallet in all_hotkeys])
all_coldkey_wallets = [
Wallet(name=wallet_name) for wallet_name in all_wallet_names
Wallet(name=wallet_name, path=cli.config.wallet.path) for wallet_name in all_wallet_names
]

hotkey_coldkey_to_hotkey_wallet = {}
Expand Down

0 comments on commit 88f6ba7

Please sign in to comment.