From e06bad95853e46c0e4573e68a9321d5db9a3fa86 Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Wed, 8 Mar 2023 13:39:33 -0500 Subject: [PATCH] fix stake output for inspect --- bittensor/_cli/commands/inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)