「操作が含まれるのを待っています...」で立ち往生無限に
-
-
使用しているウォレットを指定していただけますか?ウォレットはどのノードに接続されていますか?Could you specify the wallet you are using ? To which node the wallet is connected ?
- 0
- 2019-02-10
- lefessan
-
デフォルトのtezos-clientウォレットとalphanetノードを使用しています.問題は、私のインターネットが本当に遅く、ノードが同期するのに数日かかることでした.I'm using the default tezos-client wallet and a alphanet node. The problem was that my internet is really slow and will take some days for the node to sync.
- 0
- 2019-02-10
- RoMarQ
-
2 回答
- 投票
-
- 2019-02-07
これは、ノードがまだ完全に同期されていないか、指定/デフォルトの料金が低すぎて、どのベイカーも操作を含めることができないことを意味します.
ノードが同期されているかどうかの確認:
./tezos-client get timestamp && date -u -Isec or ./alphanet.sh client get timestamp && date -u -Isec ( For Docker Users )
これらのコマンドは、チェーンの先頭の現在のタイムスタンプと現在の時刻の2つのUTCタイムスタンプを返します.
ノードが同期されるためには、タイムスタンプを待ってチェックし続けるだけではない場合、それらのタイムスタンプが一致する必要があります.
ヘッドタイムスタンプが移動しない場合は、ノードを再起動してみてください.
解決方法:
- ノードが同期を完了するのを待ちます;
- 操作に与える料金を増やします.
クレジット:@fredcyと@braveheart
This means that your node is not fully synchronized yet or the fee you specified/defaulted is too low for any baker to include the operation.
Verifying if node is Synchronized:
./tezos-client get timestamp && date -u -Isec or ./alphanet.sh client get timestamp && date -u -Isec ( For Docker Users )
Those commands will return two UTC timestamps, the current timestamp of the head of the chain and current time.
For the node to be synched those timestamps need to match, if they don't just wait and keep checking the timestamps.
If the head timestamp isn't moving, try restarting the node.
How to solve:
- Wait for the node to finish synchronizing;
- Increase the Fee you are giving to the operation;
Credits: @fredcy and @braveheart
-
- 2019-02-07
ノードが完全にブートストラップされていない場合は、次のコマンドを実行できます.
tezos-client bootstrapped
このコマンドは、ノードが完全に同期されていない場合に通知します.
In case your node isn't fully bootstrapped, you can run:
tezos-client bootstrapped
This command will let you know in case your node isn't fully synced.
-
`tezos-clientbootstrapped`の出力は誤解を招く可能性があり、場合によっては、ノードが完全にブートストラップされていないのに完全にブートストラップされていることがわかります.`tezos-client bootstrapped` output can be misleading, in some occasions can tell that the node is fully bootstrapped when it really isn't.
- 0
- 2019-02-07
- RoMarQ
-
Gitlabのtezosプロジェクトで発生する可能性のあるバグのように聞こえますか?Sounds like a possible bug for the tezos project at Gitlab?
- 1
- 2019-02-07
- Matej maht0rz Šima
-
考えられるバグまたはドキュメントに不足しているもの.A possible bug or something missing in documentation.
- 0
- 2019-02-07
- RoMarQ
-
より優れたブートストラップヒューリスティックを備えたブランチがすでに存在しますThere is already a branch with better bootstrapped heuristics
- 2
- 2019-02-07
- jdsika
原因と修正方法は何ですか?
Waiting for the operation to be included...
無限に.