Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update validator-manual.md with variable $current_lavad_binary #245

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion docs/validator/validator-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ If you don't have an account (wallet) on Lava yet, Refer to [creating new accoun

Once your account is funded, run this to stake and start validating.

0. Set the temporary variable `$current_lavad_binary` for the following operation.

With Option A - With Cosmovisor

```bash
current_lavad_binary=$HOME/.lava/cosmovisor/current/bin/lavad
```

With Option B - Without Cosmovisor

```bash
current_lavad_binary=lavad
```

1. Verify that your node has finished synching and it is caught up with the network

```bash
Expand Down Expand Up @@ -84,4 +98,4 @@ $current_lavad_binary q staking validators | grep $validator_pubkey
sleep $block_time
$current_lavad_binary status | jq .ValidatorInfo.VotingPower | tr -d '"'
# Output should be > 0
```
```