@@ -9,21 +9,26 @@ To start fast IBD:
99cargo run --bin ibd --release -- <args>
1010```
1111
12-
1312```
1413Arguments:
15- --hintfile The path to your `bitcoin.hints` file that will be
16- used for IBD
17- --blocks-dir Directory where you would like to store the bitcoin
18- blocks
19- --network The bitcoin network to operate on. Options are `
20- bitcoin` or `signet`
21- --ping-timeout The time a peer has to respond to a `ping` message.
22- Pings are sent aggressively throughout IBD to find
23- slow peers.
24- --tcp-timeout The maximum time to establish a connection
25- --read-timeout The maximum time to read from a TCP stream until the
26- connection is killed.
27- --write-timeout The maximum time to write to a TCP stream until the
28- connection is killed.
14+
15+ --hintfile The path to your `bitcoin.hints` file that will
16+ be used for IBD. Default is `./bitcoin.hints
17+ --blocks-dir Directory where you would like to store the
18+ bitcoin blocks. Default `./blockfiles`
19+ --network The bitcoin network to operate on. Default `
20+ bitcoin`. Options are `bitcoin` or `signet`
21+ --ping-timeout The time (seconds) a peer has to respond to a `
22+ ping` message. Pings are sent aggressively
23+ throughout IBD to find slow peers.
24+ --tcp-timeout The maximum time (seconds) to establish a
25+ connection
26+ --read-timeout The maximum time (seconds) to read from a TCP
27+ stream until the connection is killed.
28+ --write-timeout The maximum time (seconds) to write to a TCP
29+ stream until the connection is killed.
30+ --min-blocks-per-sec The minimum rate a peer has to respond to block
31+ requests.
32+ --tasks The number of tasks to download blocks. Default
33+ is 64. Each task uses two OS threads.
2934```
0 commit comments