forked from tendermint/tendermint
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli: fix abci help (tendermint#9717)
* fix abci-cli help * add test * fix script * debugging CI * revert the changes for verifying CI * update pending log Co-authored-by: Sergio Mena <[email protected]>
- Loading branch information
1 parent
12f0c4a
commit 2d036c5
Showing
4 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
the ABCI CLI tool wraps an ABCI client and is used for testing ABCI servers | ||
|
||
Usage: | ||
abci-cli [command] | ||
|
||
Available Commands: | ||
batch run a batch of abci commands against an application | ||
check_tx validate a transaction | ||
commit commit the application state and return the Merkle root hash | ||
completion Generate the autocompletion script for the specified shell | ||
console start an interactive ABCI console for multiple commands | ||
deliver_tx deliver a new transaction to the application | ||
echo have the application echo a message | ||
help Help about any command | ||
info get some info about the application | ||
kvstore ABCI demo example | ||
prepare_proposal prepare proposal | ||
process_proposal process proposal | ||
query query the application state | ||
test run integration tests | ||
version print ABCI console version | ||
|
||
Flags: | ||
--abci string either socket or grpc (default "socket") | ||
--address string address of application socket (default "tcp://0.0.0.0:26658") | ||
-h, --help help for abci-cli | ||
--log_level string set the logger level (default "debug") | ||
-v, --verbose print the command and results as if it were a console session | ||
|
||
Use "abci-cli [command] --help" for more information about a command. |