🔨Sync and Consensus
check logs:
sudo journalctl -u namadad -fcheck sync status and node info:
curl http://127.0.0.1:26657/status | jqcheck consensus state:
curl -s localhost:26657/consensus_state | jq .result.round_state.height_vote_set[0].prevotes_bit_arraycheck consensus state:
curl -s localhost:26657/consensus_state | jq .result.round_state.height_vote_set[-2].prevotes_bit_arrayfull consensus state:
curl -s localhost:12657/dump_consensus_stateyour validator votes (prevote):
curl -s http://localhost:26657/dump_consensus_state | jq '.result.round_state.votes[0].prevotes' | grep $(curl -s http://localhost:26657/status | jq -r '.result.validator_info.address[:12]')Last updated