From ccdde6ef584623dd1184a7f645b1558174c76c4e Mon Sep 17 00:00:00 2001 From: TimmyExogenous Date: Thu, 19 Dec 2024 22:24:59 +0800 Subject: [PATCH] fix the lint error in readme --- cmd/exocore-test-tool/README.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/cmd/exocore-test-tool/README.md b/cmd/exocore-test-tool/README.md index c4c525d9..de914529 100644 --- a/cmd/exocore-test-tool/README.md +++ b/cmd/exocore-test-tool/README.md @@ -56,27 +56,39 @@ The specific processes for the two types of testing are as follows: A local node needs to be started through `local_node.sh` before testing. 1. automated testing: Step 1: Initialize the configuration file in current directory + ```shell exocore-test-tool init --home ``` + Step 2: Start the test tool + ```shell exocore-test-tool start --home . ``` + 2. manual testing: - Step 1: Initialize the configuration file in current directory + + Step 1: Initialize the configuration file in current directory + ```shell exocore-test-tool init --home ``` - Step 2: Prepare test environment + + Step 2: Prepare test environment + ```shell - exocore-test-tool prepare --home . + exocore-test-tool prepare --home . ``` - Step 3: Run batch tests + + Step 3: Run batch tests + ```shell exocore-test-tool batch-test depositLST --home . ``` + We can query transactions for a specific batch and status using the following command, either during or after the test: + ```shell exocore-test-tool query-tx-record ```