0g-chain/docs/upgrade.md
2018-10-05 14:42:03 -04:00

566 B

Validator Upgrade

These are some guidelines to upgrade to a new testnet if you where validating on a previous one.

  1. Stop the current validator.

  2. Remove the old config.

    rm -r $HOME/.kvd
    rm -r $HOME/.kvcli
    
  3. Get the latest code.

    cd $GOPATH/src/github.com/kava-labs/kava
    git pull
    
  4. Get the latest dependencies.

    dep ensure -vendor-only
    
  5. Install.

    go install ./cmd/kvd
    go install ./cmd/kvcli
    
  6. Follow the installation instructions for running a full node and becoming a validator.