Easy way to compare bitcoin node block to total block, check sync status

0

I am familiar with bitcoin-cli getblockcount, but is there an easy way to compare this to the total block count to check my sync status?

AllWorkNoFun

Posted 2018-06-21T19:12:06.550

Reputation: 3

Answers

0

Since you're already on the command line, try:

wget -q -O- https://blockexplorer.com/q/getblockcount; echo

sizzlecookie

Posted 2018-06-21T19:12:06.550

Reputation: 366

That's not even a URL, and hasn't been for years.Anonymous 2018-06-21T19:49:39.103

This is exactly what I was looking for, it works for me. Did you try it?AllWorkNoFun 2018-06-21T19:56:25.113