Skip to content

Commit

Permalink
update command from --config= to --config for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
wileyj committed Jan 18, 2024
1 parent a7cb646 commit 6a3f85e
Show file tree
Hide file tree
Showing 50 changed files with 127 additions and 127 deletions.
4 changes: 2 additions & 2 deletions docs/nodes-and-miners/miner-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ burn_fee_cap = 20000
To run your miner, run this in the command line:

```bash
stacks-node start --config=$HOME/mainnet-miner-conf.toml
stacks-node start --config $HOME/mainnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -186,7 +186,7 @@ Your node should start. It will take some time to sync, and then your miner will
In case you are running into issues or would like to see verbose logging, you can run your node with debug logging enabled. In the command line, run:

```bash
STACKS_LOG_DEBUG=1 stacks-node start --config=$HOME/mainnet-miner-conf.toml
STACKS_LOG_DEBUG=1 stacks-node start --config $HOME/mainnet-miner-conf.toml
```

---
Expand Down
4 changes: 2 additions & 2 deletions docs/nodes-and-miners/miner-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ amount = 10000000000000000
To run your miner, run this in the command line:

```bash
stacks-node start --config=$HOME/testnet-miner-conf.toml
stacks-node start --config $HOME/testnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -200,7 +200,7 @@ Your node should start. It will take some time to sync, and then your miner will
In case you are running into issues or would like to see verbose logging, you can run your node with debug logging enabled. In the command line, run:

```bash
STACKS_LOG_DEBUG=1 stacks-node start --config=$HOME/testnet-miner-conf.toml
STACKS_LOG_DEBUG=1 stacks-node start --config $HOME/testnet-miner-conf.toml
```

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ cargo run --bin blockstack-cli publish b8d99fd45da58038d630d9855d3ca2466e8e0f89d
You can observe the state machine in action locally by running:

```bash
cargo stacks-node start --config=./testnet/stacks-node/conf/testnet-follower-conf.toml
cargo stacks-node start --config ./testnet/stacks-node/conf/testnet-follower-conf.toml
```

`testnet-follower-conf.toml` is a configuration file that you can use for setting genesis balances or configuring Event observers. You can grant an address an initial account balance by adding the following entries:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/mainnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -156,7 +156,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./mainnet-miner-conf.toml
./target/release/stacks-node start --config ./mainnet-miner-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the mining guide](../understand-stacks/mining).
Expand Down Expand Up @@ -273,7 +273,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/mainnet-miner-conf.toml
```

:::note
Expand All @@ -289,7 +289,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=mainnet-miner-conf.toml
stacks-node start --config mainnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/testnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -150,7 +150,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./testnet/conf/testnet-follower-conf.toml
./target/release/stacks-node start --config ./testnet/conf/testnet-follower-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the minig guide](../understand-stacks/mining):
Expand Down Expand Up @@ -260,7 +260,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/testnet-miner-conf.toml
```

<!-- markdown-link-check-disable -->
Expand All @@ -280,7 +280,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=testnet-miner-conf.toml
stacks-node start --config testnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Start a node with a config of your own. Can be used for joining a network, start
Example:

```bash
stacks-node start --config=/path/to/config.toml
stacks-node start --config /path/to/config.toml
```

See [Configuration File Options](#configuration-file-options) for more information.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ cargo run --bin blockstack-cli publish b8d99fd45da58038d630d9855d3ca2466e8e0f89d
You can observe the state machine in action locally by running:

```bash
cargo stacks-node start --config=./testnet/stacks-node/conf/testnet-follower-conf.toml
cargo stacks-node start --config ./testnet/stacks-node/conf/testnet-follower-conf.toml
```

`testnet-follower-conf.toml` is a configuration file that you can use for setting genesis balances or configuring Event observers. You can grant an address an initial account balance by adding the following entries:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/mainnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -127,7 +127,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./mainnet-miner-conf.toml
./target/release/stacks-node start --config ./mainnet-miner-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the mining guide](../understand-stacks/mining).
Expand Down Expand Up @@ -215,7 +215,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/mainnet-miner-conf.toml
```

:::note
Expand All @@ -231,7 +231,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=mainnet-miner-conf.toml
stacks-node start --config mainnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/testnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -123,7 +123,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./testnet/conf/testnet-follower-conf.toml
./target/release/stacks-node start --config ./testnet/conf/testnet-follower-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the minig guide](../understand-stacks/mining):
Expand Down Expand Up @@ -206,7 +206,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/testnet-miner-conf.toml
```

<!-- markdown-link-check-disable -->
Expand All @@ -226,7 +226,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=testnet-miner-conf.toml
stacks-node start --config testnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Start a node with a config of your own. Can be used for joining a network, start
Ejemplo:

```bash
stacks-node start --config=/path/to/config.toml
stacks-node start --config /path/to/config.toml
```

See [Configuration File Options](#configuration-file-options) for more information.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ cargo run --bin blockstack-cli publish b8d99fd45da58038d630d9855d3ca2466e8e0f89d
Vous pouvez observer la machine d'état en action (localement) en exécutant :

```bash
cargo stacks-node start --config=./testnet/stacks-node/conf/testnet-follower-conf.toml
cargo stacks-node start --config ./testnet/stacks-node/conf/testnet-follower-conf.toml
```

`testnet-follower-conf.toml` est un fichier de configuration que vous pouvez utiliser pour mettre en place des balances genesis ou configurer des observateurs d'événements. Vous pouvez accorder à une adresse un solde initial du compte en ajoutant les entrées suivantes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/mainnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -127,7 +127,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./mainnet-miner-conf.toml
./target/release/stacks-node start --config ./mainnet-miner-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the mining guide](../understand-stacks/mining).
Expand Down Expand Up @@ -215,7 +215,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/mainnet-miner-conf.toml
```

:::note
Expand All @@ -231,7 +231,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=mainnet-miner-conf.toml
stacks-node start --config mainnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/testnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -123,7 +123,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./testnet/conf/testnet-follower-conf.toml
./target/release/stacks-node start --config ./testnet/conf/testnet-follower-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the minig guide](../understand-stacks/mining):
Expand Down Expand Up @@ -206,7 +206,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/testnet-miner-conf.toml
```

<!-- markdown-link-check-disable -->
Expand All @@ -226,7 +226,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=testnet-miner-conf.toml
stacks-node start --config testnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Start a node with a config of your own. Can be used for joining a network, start
Example:

```bash
stacks-node start --config=/path/to/config.toml
stacks-node start --config /path/to/config.toml
```

See [Configuration File Options](#configuration-file-options) for more information.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ cargo run --bin blockstack-cli publish b8d99fd45da58038d630d9855d3ca2466e8e0f89d
You can observe the state machine in action locally by running:

```bash
cargo stacks-node start --config=./testnet/stacks-node/conf/testnet-follower-conf.toml
cargo stacks-node start --config ./testnet/stacks-node/conf/testnet-follower-conf.toml
```

`testnet-follower-conf.toml` is a configuration file that you can use for setting genesis balances or configuring Event observers. You can grant an address an initial account balance by adding the following entries:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/mainnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -127,7 +127,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./mainnet-miner-conf.toml
./target/release/stacks-node start --config ./mainnet-miner-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the mining guide](../understand-stacks/mining).
Expand Down Expand Up @@ -215,7 +215,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/mainnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/mainnet-miner-conf.toml
```

:::note
Expand All @@ -231,7 +231,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=mainnet-miner-conf.toml
stacks-node start --config mainnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Now, grab your `privateKey` from earlier, when you ran the `make_keychain` comma
To run your miner, run this in the command line:

```bash
stacks-node start --config=./testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config ./testnet/stacks-node/conf/testnet-miner-conf.toml
```

Your node should start. It will take some time to sync, and then your miner will be running.
Expand All @@ -123,7 +123,7 @@ The above code will compile an optimized binary. To use it, run:

```bash
cd ../..
./target/release/stacks-node start --config=./testnet/conf/testnet-follower-conf.toml
./target/release/stacks-node start --config ./testnet/conf/testnet-follower-conf.toml
```

To read more about the technical details of mining on the Stacks 2.0 network, have a look at [the minig guide](../understand-stacks/mining):
Expand Down Expand Up @@ -206,7 +206,7 @@ Now, grab your `privateKey` from earlier, when you ran the `stx make_keychain` c
To start your miner, run this in the command line:

```bash
stacks-node start --config=testnet/stacks-node/conf/testnet-miner-conf.toml
stacks-node start --config testnet/stacks-node/conf/testnet-miner-conf.toml
```

<!-- markdown-link-check-disable -->
Expand All @@ -226,7 +226,7 @@ In case you are running into issues or would like to see verbose logging, you ca
```bash
set RUST_BACKTRACE=full;
set STACKS_LOG_DEBUG=1;
stacks-node start --config=testnet-miner-conf.toml
stacks-node start --config testnet-miner-conf.toml
```

## Optional: Running with Docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Start a node with a config of your own. Can be used for joining a network, start
Example:

```bash
stacks-node start --config=/path/to/config.toml
stacks-node start --config /path/to/config.toml
```

See [Configuration File Options](#configuration-file-options) for more information.
Expand Down
Loading

0 comments on commit 6a3f85e

Please sign in to comment.