We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 682d79a commit 1d427a5Copy full SHA for 1d427a5
scripts/install_staging.sh
@@ -58,7 +58,9 @@ cd ../bittensor-subnet-template
58
python -m pip install -e .
59
60
# Create a coldkey for the owner role
61
-btcli wallet new_coldkey --wallet.name owner --no_password --no_prompt
+wallet=${1:-owner}
62
+
63
+btcli wallet new_coldkey --wallet.name $wallet --no_password --no_prompt
64
65
# Set up the miner's wallets
66
btcli wallet new_coldkey --wallet.name miner --no_password --no_prompt
0 commit comments