Livello attuale di block-chain
2 risposta
- voti
-
- 2019-07-31
Puoi richiedere l'attuale head deltuonodo usando
./tezos-client rpcget/chains/main/blocks/head
(e cercaillivello
einformazioni hash ).Quindi,usailtuoesploratore diblocchipreferitoper conoscereil livello dellatesta attuale. In alternativa,il comando
./tezos-clientbootstrapped
mira abloccarsie tornare solo quandoilnodo è sincronizzato.You can request the current head of your node using
./tezos-client rpc get /chains/main/blocks/head
(and look for thelevel
andhash
information). Then, use your favorite block explorer to know the level of the current head.Alternatively, the
./tezos-client bootstrapped
command aims to hang and return only when the node is synchronized. -
- 2019-07-31
Eccoilmio comandogoto.
tezos-client rpcget/chains/main/blocks/head/|jq -r '.header.level,.header.timestamp'; data --iso-8601=secondi
L'output sarà simile a:
544640 2019-07-31T10: 53: 57Z 2019-07-31T10: 54: 10 + 00: 00 Qual èil livello diblocco delnodo,iltimestamp dell'ultimobloccoe iltimestamp del sistema.
Eseguilo alcune volte,aspettandotra 10e 20 secondi,per ottenere una stima deltempo rimanenteper recuperare.
Here's my goto command.
tezos-client rpc get /chains/main/blocks/head/ | jq -r '.header.level, .header.timestamp';date --iso-8601=seconds
The output will look something like:
544640 2019-07-31T10:53:57Z 2019-07-31T10:54:10+00:00
Which is the node's block level, the last block timestamp and your system's timestamp.
Run it a few times, waiting 10 - 20 seconds in between, to get an estimate on the time remaining to catch up.
Comeposso ottenere un livelloeffettivo diblockchain da unnodonon sincronizzato (tramite RPC).cioè come ottenere quantiblocchi sono rimastiper la sincronizzazione delmionodo?