Nivel actual de cadena de bloques
2 respuestas
- votos
-
- 2019-07-31
Puede solicitarelencabezado actual de sunodo usando
./tezos-client rpc get /chains/main/blocks/head
(ybusqueellevel
yhash
).Luego,usatuexplorador debloquesfavoritopara conocerelnivel de la cabeza actual.Alternativamente,el comando
./tezos-client bootstrapped
tiene como objetivo colgarse y regresar solo cuandoelnodoestá sincronizado.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
Aquíestámi comandogoto.
tezos-client rpc get /chains/main/blocks/head/ | jq -r '.header.level, .header.timestamp';date --iso-8601=seconds
La salida se verá así:
544640 2019-07-31T10:53:57Z 2019-07-31T10:54:10+00:00
Cuáleselnivel debloque delnodo,lamarca detiempo del últimobloque y lamarca detiempo de su sistema.
Ejecútelo varias veces,esperandoentre 10 y 20 segundosentreellas,para obtener unaestimación deltiempo restanteparaponerse al día.
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.
¿Cómopuedo obtener unnivel real de cadena debloques desde unnodono sincronizado (através de RPC)?es decir,¿cuántosbloques quedanpara sincronizarmi nodo?