Skip to content
Merged

Cli fix #1541

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
6 changes: 5 additions & 1 deletion bittensor/commands/overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,11 @@ def run(cli: "bittensor.cli"):
total_emission = 0

for nn in neurons[str(netuid)]:
hotwallet = hotkey_coldkey_to_hotkey_wallet[nn.hotkey][nn.coldkey]
hotwallet = hotkey_coldkey_to_hotkey_wallet.get(nn.hotkey, {}).get(
nn.coldkey, None
)
if not hotwallet:
continue
nn: bittensor.NeuronInfoLite
uid = nn.uid
active = nn.active
Expand Down