현재 블록 체인 수준
2 대답
- 투표
-
- 2019-07-31
./tezos-client rpc get /chains/main/blocks/head
를 사용하여 노드의 현재 헤드를 요청할 수 있습니다 (그리고level
및hash
정보).그런 다음 좋아하는 블록 탐색기를 사용하여 현재 헤드의 레벨을 알 수 있습니다.또는
./tezos-client bootstrapped
명령은 노드가 동기화 된 경우에만 중단 및 반환을 목표로합니다.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
다음은 내goto 명령입니다.
tezos-client rpcget/chains/main/blocks/head/|jq -r '.header.level,.header.timestamp'; date --iso-8601=초
출력은 다음과 같습니다.
<사전> <코드> 544640 2019-07-31T10 : 53 : 57Z 2019-07-31T10 : 54 : 10 + 00 : 00노드의 블록 수준,마지막 블록 타임 스탬프 및 시스템 타임 스탬프입니다.
몇 번 실행하고 그 사이에 10 ~ 20 초를 기다렸다가 따라 잡기까지 남은 시간을 예상하세요.
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.
동기화되지 않은 노드 (RPC를 통해)에서 실제 수준의 블록 체인을 얻으려면 어떻게해야합니까?즉,내 노드를 동기화하기 위해 얼마나 많은 블록이 남아 있습니까?