ブロックチェーンの現在のレベル
2 回答
- 投票
-
- 2019-07-31
./tezos-client rpcget/chains/main/ブロックs/head
を使用してノードの現在のヘッドをリクエストできます(そしてlevel
と<を探しますcode> hash 情報).次に、お気に入りのブロックエクスプローラーを使用して、現在の頭のレベルを確認します.または、
./tezos-clientbootstrapped
コマンドは、ノードが同期されている場合にのみハングして戻ることを目的としています.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 rpc get /chains/main/blocks/head/ | jq -r '.header.level, .header.timestamp';date --iso-8601=seconds
出力は次のようになります:
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を介して)実際のレベルのブロックチェーンを取得するにはどうすればよいですか.つまり、ノードを同期するために残っているブロックの数を取得するにはどうすればよいですか?