Skip to content

Commit

Permalink
GITBOOK-51: Remove --reward-cycle argument
Browse files Browse the repository at this point in the history
  • Loading branch information
kenrogers authored and gitbook-bot committed Mar 15, 2024
1 parent 8a3d936 commit 183da26
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions nakamoto-upgrade/running-a-signer.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ docker run -d \
blockstack/stacks-core:next \ # the docker image, currently tagged as `next`
stacks-signer run \
--config /config.toml \
--reward-cycle 1
```

{% hint style="info" %}
Expand All @@ -93,7 +92,7 @@ FROM blockstack/stacks-core:next
COPY signer-config.toml /config.toml
EXPOSE 20444
EXPOSE 20443
CMD ["stacks-signer", "run", "--config", "/config.toml", "--reward-cycle", "1"]
CMD ["stacks-signer", "run", "--config", "/config.toml"]
```

#### Running the Signer as a Binary
Expand All @@ -107,7 +106,7 @@ Official binaries are available from the [Stacks Core releases page on Github](h
After you run `cargo build`, you can then run the signer with the following command (be sure to replace `../signer-config.toml` with the actual path of your config file).

```bash
stacks-signer run --config ../signer-config.toml --reward-cycle 1
stacks-signer run --config ../signer-config.toml
```

#### Verify the Signer is Running
Expand Down

0 comments on commit 183da26

Please sign in to comment.