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 번의 확인이 필요하기 때문인가요?
거래 속도를 높이려면 어떻게해야합니까?
감사합니다!