通过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-client将1从"来源"转移到"收件人"
,但花了30分钟才能在区块链上显示.是因为需要30次确认吗?
如何提高交易速度?
谢谢!