Use consistent vote account filename (#9414)

automerge
This commit is contained in:
Michael Vines 2020-04-09 17:53:56 -07:00 committed by GitHub
parent be77bdef12
commit aeddd8c95a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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
```
> Dont delegate your remaining SOL, as your validator will use those tokens to vote.
@ -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
@ -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

View File

@ -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" %}
@ -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

View File

@ -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.