Skip to content

Commit f64d064

Browse files
committed
💬style: modify CLI print text
1 parent 15096e2 commit f64d064

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/org/tron/command/HelpCommand.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,35 +85,35 @@ public void usage() {
8585
) );
8686

8787
System.out.println( ansi().eraseScreen().render(
88-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "account")
88+
String.format("\t@|bold %-20s\tGet your wallet address|@", "account")
8989
) );
9090

9191
System.out.println( ansi().eraseScreen().render(
92-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "getbalance")
92+
String.format("\t@|bold %-20s\tGet your balance|@", "getbalance")
9393
) );
9494

9595
System.out.println( ansi().eraseScreen().render(
96-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "send")
96+
String.format("\t@|bold %-20s\tSend balance to receiver address|@", "send")
9797
) );
9898

9999
System.out.println( ansi().eraseScreen().render(
100-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "printblockchain")
100+
String.format("\t@|bold %-20s\tPrint blockchain|@", "printblockchain")
101101
) );
102102

103103
System.out.println( ansi().eraseScreen().render(
104-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "consensus")
104+
String.format("\t@|bold %-20s\tCreate a server|@", "consensus")
105105
) );
106106

107107
System.out.println( ansi().eraseScreen().render(
108-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "getmessage")
108+
String.format("\t@|bold %-20s\tGet a consensus|@", "getmessage")
109109
) );
110110

111111
System.out.println( ansi().eraseScreen().render(
112-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "putmessage")
112+
String.format("\t@|bold %-20s\tPut a consensus message|@", "putmessage")
113113
) );
114114

115115
System.out.println( ansi().eraseScreen().render(
116-
String.format("\t@|bold %-20s\tPrint the current java-tron version|@", "exit")
116+
String.format("\t@|bold %-20s\tExit java-tron application|@", "exit")
117117
) );
118118

119119
System.out.println("");

0 commit comments

Comments
 (0)