Skip to content

Commit becca24

Browse files
authored
Few fixes in docs/comments (#3068)
* Few fixes in docs/comments * Add descriptions
1 parent 9d109d6 commit becca24

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

contrib/zmq/zmq_sub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ZMQ example using python3's asyncio
88
99
Dash should be started with the command line arguments:
10-
dashd-testnet -daemon \
10+
dashd -testnet -daemon \
1111
-zmqpubrawtx=tcp://127.0.0.1:28332 \
1212
-zmqpubrawblock=tcp://127.0.0.1:28332 \
1313
-zmqpubhashtx=tcp://127.0.0.1:28332 \

doc/REST-interface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ https://github.com/bitcoin/bips/blob/master/bip-0064.mediawiki
5757

5858
Example:
5959
```
60-
$ curl localhost:18332/rest/getutxos/checkmempool/b2cdfd7b89def827ff8af7cd9bff7627ff72e5e8b0f71210f92ea7a4000c5d75-0.json 2>/dev/null | json_pp
60+
$ curl localhost:19998/rest/getutxos/checkmempool/b2cdfd7b89def827ff8af7cd9bff7627ff72e5e8b0f71210f92ea7a4000c5d75-0.json 2>/dev/null | json_pp
6161
{
6262
"chainHeight" : 325347,
6363
"chaintipHash" : "00000000fb01a7f3745a717f8caebee056c484e6e0bfe4a9591c235bb70506fb",
@@ -99,4 +99,4 @@ Only supports JSON as output format.
9999

100100
Risks
101101
-------------
102-
Running a web browser on the same node with a REST enabled bitcoind can be a risk. Accessing prepared XSS websites could read out tx/block data of your node by placing links like `<script src="http://127.0.0.1:8332/rest/tx/1234567890.json">` which might break the nodes privacy.
102+
Running a web browser on the same node with a REST enabled dashd can be a risk. Accessing prepared XSS websites could read out tx/block data of your node by placing links like `<script src="http://127.0.0.1:19998/rest/tx/1234567890.json">` which might break the nodes privacy.

doc/developer-notes.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,19 @@ Threads
189189

190190
- ThreadRPCServer : Remote procedure call handler, listens on port 9998 for connections and services them.
191191

192-
- BitcoinMiner : Generates coins (if wallet is enabled).
193-
194192
- Shutdown : Does an orderly shutdown of everything.
195193

194+
- CSigSharesManager::WorkThreadMain : Processes pending BLS signature shares.
195+
196+
- CInstantSendManager::WorkThreadMain : Processes pending InstantSend locks.
197+
198+
Thread pools
199+
------------
200+
201+
- CBLSWorker : A highly parallelized worker/helper for BLS/DKG calculations.
202+
203+
- CDKGSessionManager : A thread pool for processing LLMQ messages.
204+
196205
Ignoring IDE/editor files
197206
--------------------------
198207

doc/release-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Codesigner only: Sign the osx binary:
165165

166166
transfer dashcore-osx-unsigned.tar.gz to osx for signing
167167
tar xf dashcore-osx-unsigned.tar.gz
168-
./detached-sig-create.sh -s "Key ID"
168+
./detached-sig-create.sh -s "Key ID" -o runtime
169169
Enter the keychain password and authorize the signature
170170
Move signature-osx.tar.gz back to the gitian host
171171

src/chainparams.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ static Consensus::LLMQParams llmq400_85 = {
199199
.dkgMiningWindowEnd = 48, // give it a larger mining window to make sure it is mined
200200
.dkgBadVotesThreshold = 300,
201201

202-
.signingActiveQuorumCount = 4, // two days worth of LLMQs
202+
.signingActiveQuorumCount = 4, // four days worth of LLMQs
203203

204204
.keepOldConnections = 5,
205205
};

0 commit comments

Comments
 (0)