From 6e51c5685efe909118e2d0a21b5a35b8c4f863c4 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sat, 4 Jan 2020 08:53:01 -0700 Subject: [PATCH] Minor book fixes --- book/src/running-archiver.md | 4 ++-- book/src/running-validator/validator-monitor.md | 2 +- book/src/running-validator/validator-stake.md | 2 +- book/src/running-validator/validator-start.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/book/src/running-archiver.md b/book/src/running-archiver.md index 68d5a4fab5..fa0108327d 100644 --- a/book/src/running-archiver.md +++ b/book/src/running-archiver.md @@ -95,7 +95,7 @@ Download the binaries by navigating to [https://github.com/solana-labs/solana/re Try running following command to join the gossip network and view all the other nodes in the cluster: ```bash -solana-gossip --entrypoint testnet.solana.com:8001 spy +solana-gossip spy --entrypoint testnet.solana.com:8001 # Press ^C to exit ``` @@ -146,7 +146,7 @@ solana-archiver --entrypoint testnet.solana.com:8001 --identity-keypair archiver From another console, confirm the IP address and **identity pubkey** of your archiver is visible in the gossip network by running: ```bash -solana-gossip --entrypoint testnet.solana.com:8001 spy +solana-gossip spy --entrypoint testnet.solana.com:8001 ``` Provide the **storage account pubkey** to the `solana show-storage-account` command to view the recent mining activity from your archiver: diff --git a/book/src/running-validator/validator-monitor.md b/book/src/running-validator/validator-monitor.md index ac968efa4d..0ff772c9c1 100644 --- a/book/src/running-validator/validator-monitor.md +++ b/book/src/running-validator/validator-monitor.md @@ -6,7 +6,7 @@ Confirm the IP address and **identity pubkey** of your validator is visible in the gossip network by running: ```bash -solana-gossip --entrypoint testnet.solana.com:8001 spy +solana-gossip spy --entrypoint testnet.solana.com:8001 ``` ## Check Your Balance diff --git a/book/src/running-validator/validator-stake.md b/book/src/running-validator/validator-stake.md index 2d3f469c87..e50b77e449 100644 --- a/book/src/running-validator/validator-stake.md +++ b/book/src/running-validator/validator-stake.md @@ -89,7 +89,7 @@ To monitor your validator during its warmup period: * View your stake account, the delegation preference and details of your stake:`solana show-stake-account ~/validator-stake-keypair.json` * `solana uptime ~/validator-vote-keypair.json` will display the voting history \(aka, uptime\) of your validator over recent Epochs * `solana show-validators` displays the current active stake of all validators, including yours -* `solana show-show-stake-history ` shows the history of stake warming up and cooling down over recent epochs +* `solana show-stake-history ` shows the history of stake warming up and cooling down over recent epochs * Look for log messages on your validator indicating your next leader slot: `[2019-09-27T20:16:00.319721164Z INFO solana_core::replay_stage] voted and reset PoH at tick height ####. My next leader slot is ####` * Once your stake is warmed up, you will see a stake balance listed for your validator on the [Solana Network Explorer](http://explorer.solana.com/validators) diff --git a/book/src/running-validator/validator-start.md b/book/src/running-validator/validator-start.md index e9a54ca5c2..626bbf255b 100644 --- a/book/src/running-validator/validator-start.md +++ b/book/src/running-validator/validator-start.md @@ -33,7 +33,7 @@ Try running following command to join the gossip network and view all the other nodes in the cluster: ```bash -solana-gossip --entrypoint testnet.solana.com:8001 spy +solana-gossip spy --entrypoint testnet.solana.com:8001 # Press ^C to exit ```