サンドボックスモードでパン屋を有効にする方法は?
2 回答
- 投票
-
- 2019-11-05
サンドボックス化されたベイカーは、
tezos-baker-alpha
バイナリを使用して使用できます.これを行うには、./tezos-baker-alpha -P 18731 run with local node /path/to/generated/data_dir
を実行します.ここで、ノードのrpcと生成されたデータディレクトリの両方がsandobxedノードに記録されます.ログ.実行のたびにパスをコピーして貼り付けないように、永続的で静的なデータディレクトリを使用することをお勧めします.これを行うには、
DATA_DIR
環境変数を使用してサンドボックス化されたノードを実行します.例:DATA_DIR=/path/to/data_dir1 ./src/bin_node/tezos-sandboxed-node.sh 1
;次に、そのパスを使用してパン屋を実行します.You can use the sandboxed baker using the
tezos-baker-alpha
binary. To do so, run./tezos-baker-alpha -P 18731 run with local node /path/to/generated/data_dir
where both the node's rpc and generated data directory should be logged in the sandobxed node logs.I recommend using a persistent and static data directory to avoid copy/pasting the path at each run. To do so run the sandboxed node using the
DATA_DIR
environment variable. For example:DATA_DIR=/path/to/data_dir1 ./src/bin_node/tezos-sandboxed-node.sh 1
; then run your baker using that path.-
彼らは無料で焼くつもりですか?Are they going to bake for free ?
- 0
- 2019-11-11
- jpic
-
アルファプロトコル(つまり、現在のメインネットプロトコル)に関連するデポジット/リワード/…ルールで実行されます.ブートストラップアカウントにはたくさんのトークンがあるので、問題ないはずです.It will run with the deposits/rewards/… rules related to the alpha protocol (that is to say the current mainnet protocol). As the bootstrap accounts have plenty of tokens, it should be ok.
- 0
- 2019-11-12
- vect0r
-
ありがとう!新しいアカウントでも自動的にベイクしますか?Thanks ! are they going to bake automatically even for new accounts ?
- 0
- 2019-11-12
- jpic
-
パン屋がこれらのアカウントの秘密鍵にアクセスできれば、そうなると思います.If the baker can access to the secret keys of these accounts, I think it will.
- 0
- 2019-11-12
- vect0r
-
エラー: 誤ったコマンドライン引数5(/path/to/generate/data_dir). ディレクトリが存在しません: '/path/to/generate/data_dir'Error: Erroneous command line argument 5 (/path/to/generated/data_dir). Directory doesn't exist: '/path/to/generated/data_dir'
- 0
- 2020-02-11
- CryptoScroller
-
`/path/to/generate/data_dir`は、ノードのデータの実際のパスに置き換える必要がある例です.`/path/to/generated/data_dir` is an example that should be replaced by the actual path of the node's data.
- 0
- 2020-02-12
- vect0r
-
alpha.baking.forge:レベル3にスロットが見つかりません(max_priority=64)alpha.baking.forge: No slot found at level 3 (max_priority = 64)
- 0
- 2020-02-13
- CryptoScroller
-
トランザクションを実行しても、自動的にベイクされません.When I do a transaction it is not getting baked automatically.
- 0
- 2020-02-13
- CryptoScroller
-
セットアップ全体と使用するコマンドで専用の問題を開くことを検討する必要があります.あなたを助けるのは簡単でしょう.You should consider opening a dedicated issue with the whole setup and the command used. It will be easier to help you.
- 0
- 2020-02-13
- vect0r
-
- 2019-11-06
tezos-sandbox mini-net
を使用して、パン屋や承認者などとの完全なネットワークサンドボックスを実行することもできます.→
https://tezos.gitlab.io/developer/flextesa.html > & tezos-sandbox mini-net --help
You can also use
tezos-sandbox mini-net
to run full network sandboxes with bakers, endorsers, etc.→ https://tezos.gitlab.io/developer/flextesa.html &
tezos-sandbox mini-net --help
-
ありがとうSeb!インタラクティブモードが本当に必要なため、今のところflextesaを使用できないようです.dockercomposeサービスでサンドボックスを開始し、rpc呼び出しテストを実行しようとしています.おそらく、この質問で解決策を提供できます.?良い一日をお過ごしくださいhttps://tezos.stackexchange.com/questions/1740/how-to-start-flextesa-in-non-interactive-modeThanks Seb ! I can't seem to be able to use flextesa for now because it really wants interactive mode, i'm just looking to start a sandbox in a docker compose service and run my rpc call tests, perhaps you can provide a solution in this question ? Have a great day https://tezos.stackexchange.com/questions/1740/how-to-start-flextesa-in-non-interactive-mode
- 0
- 2019-11-08
- jpic
現在、tezosサンドボックスモードは、次のようなものが実行されるまでトランザクションをブロックします:
質問:自動ベイクを有効にする方法は?(geth --devのように)