diff --git a/bittensor/_cli/commands/inspect.py b/bittensor/_cli/commands/inspect.py index cfa70d34ab..1b4afb3e85 100644 --- a/bittensor/_cli/commands/inspect.py +++ b/bittensor/_cli/commands/inspect.py @@ -61,7 +61,7 @@ def run (cli): else: endpoint = bittensor.endpoint.from_neuron( neuron ) registered = '[bold white]Yes[/bold white]' - stake = bittensor.Balance.from_tao( neuron.total_stake ) + stake = neuron.total_stake emission = bittensor.Balance.from_rao( neuron.emission * 1000000000 ) synapses = [bittensor.synapse.TextLastHiddenState()] _, c, t = dendrite.text( endpoints = endpoint, inputs = 'hello world', synapses=synapses)