πŸ“¬Updates

After update you can check prevotes/precommits status

FOLDER=.atomone

# find out RPC port
echo -e "\033[0;32m$(grep -A 3 "\[rpc\]" ~/$FOLDER/config/config.toml | egrep -o ":[0-9]+")\033[0m"

PORT=<enter_your_port>

curl -s localhost:$PORT/consensus_state | jq '.result.round_state.height_vote_set[0].prevotes_bit_array' && \
curl -s localhost:$PORT/consensus_state | jq '.result.round_state.height_vote_set[0].precommits_bit_array'

With full synchronization, start from v1.0.0

UPD πŸ•Š on v2.0.0-rc2 (Update Height: 1240000)

cd $HOME/atomone
git pull
git checkout v2.0.0-rc2
make build
$HOME/atomone/build/atomoned version --long | grep -e version -e commit
# version: v2.0.0-rc2
# commit: ac38dd77e6e3efb03890eec9a6bc10ac63ac9db5

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop atomoned
mv $HOME/atomone/build/atomoned $(which atomoned)
atomoned version --long | grep -e version -e commit
#

systemctl restart atomoned && journalctl -u atomoned -f -o cat

Last updated