Niveau actuel de chaîne de bloc
2 réponses
- votes
-
- 2019-07-31
Vouspouvez demander latête actuelle de votrenœud à l'aide de
./Tezos-Client RPC Get/Chains/Main/Blocs/Tête
(et recherchez leniveauhachage
informations).Ensuite,utilisez votreexplorateur deblocpréférépour connaître leniveau de latête actuelle.Alternativement,le
./Tezos-Client BootsTrappeplatin que la commande
vise à accrocheret à renvoyer uniquement lorsque lenœudest synchronisé.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
Voicima commandegoto.
Tezos-Client RPC Get/Chains/Main/Blocs/Tête/|JQ -R '.header.level,.header.Timestamp'; date --ISO-8601=secondes
La sortie ressemblera à quelque chose comme:
544640 2019-07-31T10: 53: 57z 2019-07-31T10: 54: 10 + 00: 00
Quelest leniveau debloc dunœud,le dernier horodatage dublocet l'horodatage de votre système.
Exécutez-le quelquesfois,attendez 10 à 20 secondesentre deux,pour obtenir uneestimation sur letemps restantpour rattraper.
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.
Commentpuis-je obtenir unniveau réel de chaîne debloc d'unnœudnon synchronisé (via RPC).Commenttrouver lenombre deblocs de synchronisationmonnœud?