Common Problems
Whether the node is running normally after the deployment is complete
After the deployment is complete, check whether the block height increases normally. If the block height is greater than 1, it means that the node is running normally.
Command
Calling the following command(For example, the IP is 127.0.0.1 and the port is 18002.):
Result
The results are as follows:
Note: Here seq is the block height, it is 3, and it continues to grow, indicating that the node is running normally.
The node is running normally, but the transaction commit always fails
Check to see if the node is synchronized. For nodes that are not synchronized, the sent transaction cannot be executed normally.
Command
View the current node status, the command is as follows:
Result
The partial results are shown below:
Note: The chain_max_ledger_seq indicates the latest block height of the current blockchain. The ledger_sequence indicates the block height of the current node. Since the ledger_sequence is smaller than the chain_max_ledger_seq, it indicates that the current block has not been synchronized yet, and the transaction sent through the node cannot be executed normally.
Last updated