diff --git a/bittensor/_cli/commands/overview.py b/bittensor/_cli/commands/overview.py index 9324210352..d94792c7bd 100644 --- a/bittensor/_cli/commands/overview.py +++ b/bittensor/_cli/commands/overview.py @@ -137,7 +137,7 @@ def run( cli ): validator_trust = nn.validator_trust incentive = nn.incentive dividends = nn.dividends - emission = nn.emission / (subnet_tempo + 1) + emission = int(nn.emission / (subnet_tempo + 1) * 1e9) last_update = int(block - nn.last_update) validator_permit = nn.validator_permit row = [ @@ -151,7 +151,7 @@ def run( cli ): '{:.5f}'.format(consensus), '{:.5f}'.format(incentive), '{:.5f}'.format(dividends), - '{:.5f}'.format(emission), + '{:_}'.format(emission), '{:.5f}'.format(validator_trust), '*' if validator_permit else '', str(last_update), @@ -197,7 +197,7 @@ def run( cli ): table.add_column("[overline white]CONSENSUS", '{:.5f}'.format(total_consensus), footer_style = "overline white", justify='right', style='green', no_wrap=True) table.add_column("[overline white]INCENTIVE", '{:.5f}'.format(total_incentive), footer_style = "overline white", justify='right', style='green', no_wrap=True) table.add_column("[overline white]DIVIDENDS", '{:.5f}'.format(total_dividends), footer_style = "overline white", justify='right', style='green', no_wrap=True) - table.add_column("[overline white]EMISSION(\u03C4)", '\u03C4{:.5f}'.format(total_emission), footer_style = "overline white", justify='right', style='green', no_wrap=True) + table.add_column("[overline white]EMISSION(\u03C1)", '\u03C1{:_}'.format(total_emission), footer_style = "overline white", justify='right', style='green', no_wrap=True) table.add_column("[overline white]VTRUST", '{:.5f}'.format(total_validator_trust), footer_style="overline white", justify='right', style='green', no_wrap=True) table.add_column("[overline white]VPERMIT", justify='right', no_wrap=True) table.add_column("[overline white]UPDATED", justify='right', no_wrap=True)