docker-alphanetでアカウントをアクティブ化するときにエラーが発生しました
-
-
スクリプトに `-dbasedir`(tezosクライアントディレクトリ)があることに気付きましたが、それを追加するのに役立ちますか?`tezos-client -A $ NODE_HOST -d $basedir --waitnone activate account" $ account "with $faucet --force`I notice my script has a `-d basedir` (your tezos client dir), does it help adding that? `tezos-client -A $NODE_HOST -d $basedir --wait none activate account "$account" with $faucet --force`
- 0
- 2019-03-27
- asbjornenge
-
提案をありがとう、それは私にとって何の違いもありませんでしたがThanks for the suggestion, though that didn't make any difference for me
- 0
- 2019-03-27
- TestSubject
-
私も同様の問題を抱えています.私の場合、コマンドが認識されないと表示されます.実行者の場合、アクティブ化コマンドは存在しません.nicosampler @nfd-ubuntu:〜$ ./alphanet.shクライアントが「container:tz1MzsE4cocSfss5cnav8UWzxnbrrZH32Rij.json」を使用してアカウントテストをアクティブ化しますエラー:コマンドが認識されません.manコマンドを使用して、詳細情報を取得してみてください.I'm having a similar problem, in my case it says that the command is not recognized, if a run man, the activate command does not exists. nicosampler@nfd-ubuntu:~$ ./alphanet.sh client activate account test with "container:tz1MzsE4cocSfss5cnav8UWzxnbrrZH32Rij.json" Error: Unrecognized command. Try using the man command to get more information.
- 1
- 2019-08-27
- Nicolas Dominguez
-
1 回答
- 投票
-
- 2019-09-17
ノードはまだalphanetフルブロックと同期していないと思います.
dockerを起動した後、またはこの次のコマンドを実行するソースからビルドする場合
./tezos-node run --rpc-addr 127.0.0.1:8732 --connections 10
ブロックが次のコマンドを実行することを確認するには、ブロックが完全に同期するまで待つ必要があります.
./tezos-client bootstrapped
タイムスタンプと検証が表示されたら、今すぐ実行できるはずです.
I think you node hadn't sync with the alphanet full block yet.
after start your docker or if you build from source that execute this bellow command
./tezos-node run --rpc-addr 127.0.0.1:8732 --connections 10
You need to wait until the block fully sync, to verify the block execute bellow command:
./tezos-client bootstrapped
If you see the timestamp and validation then it's should be able to go now.
このコマンドの実行中にエラーが発生しました:
そして私は:
何かアイデアはありますか?