CLIからのトランザクションにはどのくらい時間がかかりますか?
1 回答
- 投票
Tezosのブロック時間は1分です.これは、理想的なネットワーク条件下では、新しいブロックが毎分作成されることを意味します.何らかの方法で適切な料金で有効なトランザクションをネットワークに送信すると、次のブロックで処理されます.
CLIと独自のノードを使用してトランザクションを送信する場合、ノードが同期しておらず、トランザクションをネットワークに適切に中継していない可能性があります.
トランザクションを送信したら、ブロックエクスプローラーで、ネットワークが新しいブロックで前進しているかどうかを確認します.ブロックが作成されていて、トランザクションが含まれていない場合、問題はノードか、トランザクションの形式/料金にあります.
ブロックがいっぱいになり、支払う意思のある料金を引き上げて他のトランザクションと競合する必要があるためにトランザクションが遅延していない限り、トランザクションを高速化することはできません.
Tezos has a block time of 1 minute. This means that under ideal network conditions a new block will be created every minute. If you submit a valid transaction with appropriate fees to the network by any means, it will be processed in the next block.
In the case of using the CLI and your own node to submit a transaction, it is possible that your node is out of sync and not properly relaying the transaction to the network.
Once you submit your transaction, check with a block explorer to see if the network is moving forward with new blocks. If the blocks are being created and your transaction is not being included then the problem is either your node or in the format/fee of your transaction.
You can not speed up a transaction unless the blocks were full and your transaction was being delayed because it needed to compete with other transactions by raising the fee you are willing to pay.
以下の取引を行いました
./tezos-clienttransfer 1from "origin"to "recipient"
しかし、ブロックチェーンに表示されるまでに30分かかりました.30回の確認が必要なためですか?
トランザクション速度を速くするにはどうすればよいですか?
ありがとう!