Skip to content

Commit

Permalink
Use consistent vote account filename (solana-labs#9414)
Browse files Browse the repository at this point in the history
automerge
  • Loading branch information
mvines authored Apr 10, 2020
1 parent be77bde commit aeddd8c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/src/running-validator/validator-monitor.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The `solana vote-account` command displays the recent voting activity from
your validator:

```bash
solana vote-account ~/validator-vote-keypair.json
solana vote-account ~/vote-account-keypair.json
```

## Get Cluster Info
Expand Down
6 changes: 3 additions & 3 deletions docs/src/running-validator/validator-stake.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ solana create-stake-account ~/validator-stake-keypair.json 1
and then delegating that stake to your validator:

```bash
solana delegate-stake ~/validator-stake-keypair.json ~/validator-vote-keypair.json
solana delegate-stake ~/validator-stake-keypair.json ~/vote-account-keypair.json
```

> Don’t delegate your remaining SOL, as your validator will use those tokens to vote.
Expand All @@ -50,7 +50,7 @@ Stakes can be re-delegated to another node at any time with the same command,
but only one re-delegation is permitted per epoch:

```bash
solana delegate-stake ~/validator-stake-keypair.json ~/some-other-validator-vote-keypair.json
solana delegate-stake ~/validator-stake-keypair.json ~/some-other-vote-account-keypair.json
```

Assuming the node is voting, now you're up and running and generating validator
Expand Down Expand Up @@ -81,7 +81,7 @@ so it can take an hour or more for stake to come fully online.

To monitor your validator during its warmup period:

* View your vote account:`solana vote-account ~/validator-vote-keypair.json` This displays the current state of all the votes the validator has submitted to the network.
* View your vote account:`solana vote-account ~/vote-account-keypair.json` This displays the current state of all the votes the validator has submitted to the network.
* View your stake account, the delegation preference and details of your stake:`solana stake-account ~/validator-stake-keypair.json`
* `solana validators` displays the current active stake of all validators, including yours
* `solana stake-history ` shows the history of stake warming up and cooling down over recent epochs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ solana create-stake-account ~/validator-stake-keypair.json 1
and then delegating that stake to your validator:

```bash
solana delegate-stake ~/validator-stake-keypair.json ~/validator-vote-keypair.json
solana delegate-stake ~/validator-stake-keypair.json ~/vote-account-keypair.json
```

{% hint style="warning" %}
Expand All @@ -43,7 +43,7 @@ Stakes need to warm up, and warmup increments are applied at Epoch boundaries, s

To monitor your validator during its warmup period:

* View your vote account:`solana vote-account ~/validator-vote-keypair.json` This displays the current state of all the votes the validator has submitted to the network.
* View your vote account:`solana vote-account ~/vote-account-keypair.json` This displays the current state of all the votes the validator has submitted to the network.
* View your stake account, the delegation preference and details of your stake:`solana stake-account ~/validator-stake-keypair.json`
* `solana validators` displays the current active stake of all validators, including yours
* `solana stake-history ` shows the history of stake warming up and cooling down over recent epochs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ Note the version number

## Install Software

Install the Solana release [v0.23.7](https://github.com/solana-labs/solana/releases/tag/v0.23.7) on your machine by running:
Install the Solana release [LATEST_SOLANA_RELEASE_VERSION](https://github.com/solana-labs/solana/releases/tag/LATEST_SOLANA_RELEASE_VERSION) on your machine by running:

```bash
curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.22.2/install/solana-install-init.sh | sh -s - 0.23.7
curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v1.0.0/install/solana-install-init.sh | sh -s - LATEST_SOLANA_RELEASE_VERSION
```

then run `solana --version` to confirm the expected version number.

0 comments on commit aeddd8c

Please sign in to comment.