From db1d70ffef7d7abd692caa7c5ec827771d9fac76 Mon Sep 17 00:00:00 2001 From: Ivan Zubok Date: Mon, 21 Nov 2022 12:21:19 +0000 Subject: [PATCH] Fix testnet-v5 validator doc Go version 1.18.8 Remove --mode cmd line parameter --- testnet/genesis-validators.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/testnet/genesis-validators.md b/testnet/genesis-validators.md index 2cbbd3f1..1691e923 100644 --- a/testnet/genesis-validators.md +++ b/testnet/genesis-validators.md @@ -48,8 +48,8 @@ sudo apt install git curl build-essential make jq -y # Remove any existing installation of `go` sudo rm -rf /usr/local/go -# Install Go version 1.17.2 -curl https://dl.google.com/go/go1.17.2.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf - +# Install Go version 1.18.8 +curl https://dl.google.com/go/go1.18.8.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf - # Update env variables to include go cat <<'EOF' >>$HOME/.profile @@ -108,6 +108,7 @@ There are different commands to initialize a validator and to run a validator no See "Docker" section in corresponding chapters. It is important to mount a host directory (`~/.laconicd` in this documentation) to `/root/.laconicd` directory inside the container, so all blockchain data, configuration and keys persist between container restarts. For running a validator node it is also required to publish container's port 26656 and (optionally) 26660 to the host. + --- # Initialize Validator Node @@ -227,7 +228,7 @@ After=network-online.target [Service] User=$USER -ExecStart=$(which laconicd) start --mode validator --gql-playground --gql-server --log_level=warn +ExecStart=$(which laconicd) start --gql-playground --gql-server --log_level=warn Restart=always RestartSec=3 LimitNOFILE=65535