We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0374b9b commit fcca352Copy full SHA for fcca352
1 file changed
bittensor_cli/cli.py
@@ -3968,7 +3968,6 @@ def subnets_create(
3968
self,
3969
wallet_name: str = Options.wallet_name,
3970
wallet_path: str = Options.wallet_path,
3971
- wallet_hotkey: str = Options.wallet_hotkey,
3972
network: Optional[list[str]] = Options.network,
3973
prompt: bool = Options.prompt,
3974
quiet: bool = Options.quiet,
@@ -3985,9 +3984,9 @@ def subnets_create(
3985
3984
wallet = self.wallet_ask(
3986
wallet_name,
3987
wallet_path,
3988
- wallet_hotkey,
3989
- ask_for=[WO.NAME, WO.HOTKEY],
3990
- validate=WV.WALLET_AND_HOTKEY,
+ None,
+ ask_for=[WO.NAME],
+ validate=WV.WALLET,
3991
)
3992
return self._run_command(
3993
subnets.create(wallet, self.initialize_chain(network), prompt)
0 commit comments