Skip to content

Commit

Permalink
Capture more delegate info
Browse files Browse the repository at this point in the history
  • Loading branch information
thewhaleking committed Nov 13, 2024
1 parent fd51a0d commit 06e96a8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bittensor_cli/src/commands/wallets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1372,9 +1372,8 @@ def neuron_row_maker(
]
),
)
for x in all_delegates:
for y, z in x:
all_hotkeys.append(WalletLike(hotkey_ss58=y.hotkey_ss58))

all_hotkeys.extend([WalletLike(hotkey_ss58=y.hotkey_ss58) for x in all_delegates for (y, _) in x])

all_netuids = await subtensor.filter_netuids_by_registered_hotkeys(
(await subtensor.get_all_subnet_netuids(block_hash)),
Expand Down

0 comments on commit 06e96a8

Please sign in to comment.