diff --git a/bittensor_cli/src/commands/stake/move.py b/bittensor_cli/src/commands/stake/move.py index 482dc70b5..578c9f0a0 100644 --- a/bittensor_cli/src/commands/stake/move.py +++ b/bittensor_cli/src/commands/stake/move.py @@ -124,7 +124,7 @@ async def display_stake_movement_cross_subnets( style=COLOR_PALETTE["POOLS"]["TAO_EQUIV"], ) table.add_column( - "Fee (τ)", + f"Fee ({Balance.get_unit(origin_netuid)})", justify="center", style=COLOR_PALETTE["STAKE"]["STAKE_AMOUNT"], ) @@ -137,7 +137,7 @@ async def display_stake_movement_cross_subnets( str(amount_to_move), price_str, str(received_amount), - str(stake_fee), + str(stake_fee.set_unit(origin_netuid)), ) console.print(table) diff --git a/bittensor_cli/src/commands/stake/remove.py b/bittensor_cli/src/commands/stake/remove.py index 617b8581b..5dbef5fe9 100644 --- a/bittensor_cli/src/commands/stake/remove.py +++ b/bittensor_cli/src/commands/stake/remove.py @@ -234,7 +234,7 @@ async def unstake( str(amount_to_unstake_as_balance), # Amount to Unstake f"{subnet_info.price.tao:.6f}" + f"({Balance.get_unit(0)}/{Balance.get_unit(netuid)})", # Rate - str(stake_fee), # Fee + str(stake_fee.set_unit(netuid)), # Fee str(received_amount), # Received Amount # slippage_pct, # Slippage Percent ] @@ -1189,7 +1189,7 @@ def _create_unstake_table( style=COLOR_PALETTE["POOLS"]["RATE"], ) table.add_column( - f"Fee ({Balance.get_unit(0)})", + f"Fee ({Balance.get_unit(1)})", justify="center", style=COLOR_PALETTE["STAKE"]["STAKE_AMOUNT"], )