Skip to content

Commit 278e9e8

Browse files
authored
Merge pull request #647 from opentensor/fix/thewhaleking/update-st-move-wording
Updates wording on origin/destination hotkey in `st move`
2 parents 8e52652 + cfeed27 commit 278e9e8

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

bittensor_cli/cli.py

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4459,15 +4459,32 @@ def stake_move(
44594459
network: Optional[list[str]] = Options.network,
44604460
wallet_name: Optional[str] = Options.wallet_name,
44614461
wallet_path: Optional[str] = Options.wallet_path,
4462-
wallet_hotkey: Optional[str] = Options.wallet_hotkey_ss58,
4462+
wallet_hotkey: Optional[str] = typer.Option(
4463+
None,
4464+
"--from",
4465+
"--hotkey",
4466+
"--hotkey-ss58",
4467+
"-H",
4468+
"--wallet_hotkey",
4469+
"--wallet_hotkey_ss58",
4470+
"--wallet-hotkey",
4471+
"--wallet-hotkey-ss58",
4472+
"--wallet.hotkey",
4473+
help="Validator hotkey or SS58 where the stake is currently located.",
4474+
),
44634475
origin_netuid: Optional[int] = typer.Option(
44644476
None, "--origin-netuid", help="Origin netuid"
44654477
),
44664478
destination_netuid: Optional[int] = typer.Option(
44674479
None, "--dest-netuid", help="Destination netuid"
44684480
),
44694481
destination_hotkey: Optional[str] = typer.Option(
4470-
None, "--dest-ss58", "--dest", help="Destination hotkey", prompt=False
4482+
None,
4483+
"--to",
4484+
"--dest-ss58",
4485+
"--dest",
4486+
help="Destination validator hotkey SS58",
4487+
prompt=False,
44714488
),
44724489
amount: float = typer.Option(
44734490
None,

0 commit comments

Comments
 (0)