From 6b53612ecc9aed3ce3a253a72726af60c90c05a2 Mon Sep 17 00:00:00 2001 From: Ala Shaabana Date: Wed, 22 Jan 2025 16:21:07 -0800 Subject: [PATCH] Update running_on_staging.md Simple fix to the instructions for running subnets. Previous command had `--profile production` which doesn't work with `localnet.sh`, it should be `--profile release`. --- docs/running_on_staging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/running_on_staging.md b/docs/running_on_staging.md index e282dcfc..2159fc78 100644 --- a/docs/running_on_staging.md +++ b/docs/running_on_staging.md @@ -79,7 +79,7 @@ These steps initialize your local subtensor chain in development mode. These com Build the binary with the faucet feature enabled: ```bash -cargo build -p node-subtensor --profile production --features pow-faucet +cargo build -p node-subtensor --profile release --features pow-faucet ``` **NOTE**: The `--features pow-faucet` option in the above is required if we want to use the command `btcli wallet faucet` [See the below Mint tokens step](#8-mint-tokens-from-faucet).