diff --git a/bittensor/commands/overview.py b/bittensor/commands/overview.py index d262d92d6b..43e23552d2 100644 --- a/bittensor/commands/overview.py +++ b/bittensor/commands/overview.py @@ -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