πŸ“¬Updates

After update you can check prevotes/precommits status

FOLDER=.arkeo

# 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'

UPD πŸ•Š on (Update Height: )

cd $HOME/arkeo
git pull
git checkout 
make build
$HOME/arkeo/build/arkeod version --long | grep -e version -e commit
# version: 
# commit: 

# AFTER STOPPING THE NETWORK ON THE NECESSARY BLOCK!!!
systemctl stop arkeod
mv $HOME/arkeo/build/arkeod $(which arkeod)
arkeod version --long | grep -e version -e commit
# 

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

Last updated