Skip to content

Commit 2ab7a3a

Browse files
committed
docs(README): remove redundant descriptions
1 parent 30abf6c commit 2ab7a3a

5 files changed

+8
-28
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Fill in the private key of super representative address into the `localwitness`
124124

125125
```
126126
localwitness = [
127-
650950B193DDDDB35B6E48912DD28F7AB0E7140C1BFDEFD493348F02295BD812
127+
<your_private_key>
128128
]
129129
```
130130

docs/implement-a-customized-actuator-en.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public class SumActuatorTest {
257257
@Test
258258
public void sumActuatorTest() {
259259
// this key is defined in config-localtest.conf as accountName=Sun
260-
String key = "cba92a516ea09f620a16ff7ee95ce0df1d56550a8babe9964981a7144c8a784a";
260+
String key = "<your_private_key>";
261261
byte[] address = PublicMethed.getFinalAddress(key);
262262
ECKey ecKey = null;
263263
try {

docs/implement-a-customized-actuator-zh.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public class SumActuatorTest {
259259
@Test
260260
public void sumActuatorTest() {
261261
// this key is defined in config-localtest.conf as accountName=Sun
262-
String key = "cba92a516ea09f620a16ff7ee95ce0df1d56550a8babe9964981a7144c8a784a";
262+
String key = "<your_private_key>";
263263
byte[] address = PublicMethed.getFinalAddress(key);
264264
ECKey ecKey = null;
265265
try {

quickstart.md

-20
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ If everything goes well, your terminal console output will look like following :
100100

101101
<summary>Run Console Output </summary>
102102
<!-- **Run Output:** -->
103-
```
104103

105104
[PM2] Spawning PM2 daemon with pm2_home=/root/.pm2
106105
[PM2] PM2 Successfully daemonized
@@ -166,25 +165,6 @@ If everything goes well, your terminal console output will look like following :
166165
(8) TYjQd4xrLZQGYMdLJqsTCuXVGapPqUp9ZX (10000 TRX)
167166
(9) THCw6hPZpFcLCWDcsZg3W77rXZ9rJQPncD (10000 TRX)
168167

169-
Private Keys
170-
==================
171-
172-
(0) 2b2bddbeea87cecedcaf51eef55877b65725f709d2c0fcdfea0cb52d80acd52b
173-
(1) f08759925316dc6344af538ebe3a619aeab836a0c254adca903cc764f87b0ee9
174-
(2) 1afc9f033cf9c6058db366b78a9f1b9c909b1b83397c9aed795afa05e9017511
175-
(3) f8f5bc70e91fc177eefea43b68c97b66536ac317a9300639e9d32a9db2f18a1f
176-
(4) 031015272915917056c117d3cc2a03491a8f22ef450af83f6783efddf7064c59
177-
(5) 5eb25e2c1144f216aa99bbe2139d84bb6dedfb2c1ed72f3df6684a4c6d2cd96b
178-
(6) f0b781da23992e6a3f536cb60917c3eb6a9c5434fcf441fcb8d7c58c01d6b70e
179-
(7) 158f60a4379688a77d4a420e2f2a3e014ebf9ed0a1a093d7dc01ba23ebc5c970
180-
(8) e9342bb9108f46573804890a5301530c2834dce3703cd51ab77fba6161afec00
181-
(9) 2e9f0c507d2ea98dc4005a1afb1b743c629f7c145ccb55f38f75ae73cf8f605c
182-
183-
HD Wallet
184-
==================
185-
Mnemonic: border pulse twenty cruise grief shy need raw clean possible begin climb
186-
Base HD Path: m/44'/60'/0'/0/{account_index}
187-
```
188168
</details>
189169

190170

run.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Use the [Testnet Config](https://github.com/tronprotocol/TronDeployment/blob/mas
1414
**Use the executable JAR(Recommended way):**
1515

1616
```bash
17-
java -jar FullNode.jar -p your private key --witness -c your config.conf(Example:/data/java-tron/config.conf)
17+
java -jar FullNode.jar -p <your_private_key> --witness -c your config.conf(Example:/data/java-tron/config.conf)
1818
Example:
19-
java -jar FullNode.jar -p 650950B193DDDDB35B6E48912DD28F7AB0E7140C1BFDEFD493348F02295BD812 --witness -c /data/java-tron/config.conf
19+
java -jar FullNode.jar -p <your_private_key> --witness -c /data/java-tron/config.conf
2020

2121
```
2222

@@ -65,9 +65,9 @@ Then observe whether block synchronization success,If synchronization successf
6565

6666
```bash
6767
cd build/libs
68-
java -jar FullNode.jar -p your private key --witness -c your config.conf (Example:/data/java-tron/config.conf)
68+
java -jar FullNode.jar -p <your_private_key> --witness -c your config.conf (Example:/data/java-tron/config.conf)
6969
Example:
70-
java -jar FullNode.jar -p 650950B193DDDDB35B6E48912DD28F7AB0E7140C1BFDEFD493348F02295BD812 --witness -c /data/java-tron/config.conf
70+
java -jar FullNode.jar -p <your_private_key> --witness -c /data/java-tron/config.conf
7171

7272
```
7373

@@ -81,7 +81,7 @@ java -jar FullNode.jar -p 650950B193DDDDB35B6E48912DD28F7AB0E7140C1BFDEFD493348F
8181
Using TaskInputs.file() with something that doesn't resolve to a File object has been deprecated and is scheduled to be removed in Gradle 5.0. Use TaskInputs.files() instead.
8282
8383
> Task :run
84-
20:39:22.749 INFO [o.t.c.c.a.Args] private.key = 63e62a71ed39e30bac7223097a173924aad5855959de517ff2987b0e0ec89f1a
84+
20:39:22.749 INFO [o.t.c.c.a.Args] private.key = 63e62a71ed3...
8585
20:39:22.816 WARN [o.t.c.c.a.Args] localwitness size must be one, get the first one
8686
20:39:22.832 INFO [o.t.p.FullNode] Here is the help message.output-directory/
8787
三月 22, 2018 8:39:23 下午 org.tron.core.services.RpcApiService start

0 commit comments

Comments
 (0)