diff options
| author | Pieter Wuille <[email protected]> | 2016-08-31 17:35:59 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-10-17 16:46:30 +0200 |
| commit | 3ac6de0a045cc9b2047ceb19af970e7ffbf905fa (patch) | |
| tree | db39a34fe1c247bf8b42c05c2bcbf20b4ac3903c /src/main.h | |
| parent | Add cmpctblock to debug help list (diff) | |
| download | discoin-3ac6de0a045cc9b2047ceb19af970e7ffbf905fa.tar.xz discoin-3ac6de0a045cc9b2047ceb19af970e7ffbf905fa.zip | |
Align constant names for maximum compact block / blocktxn depth
Diffstat (limited to 'src/main.h')
| -rw-r--r-- | src/main.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h index 2646d8f86..db58b2748 100644 --- a/src/main.h +++ b/src/main.h @@ -90,6 +90,11 @@ static const unsigned int BLOCK_STALLING_TIMEOUT = 2; /** Number of headers sent in one getheaders result. We rely on the assumption that if a peer sends * less than this number, we reached its tip. Changing this value is a protocol upgrade. */ static const unsigned int MAX_HEADERS_RESULTS = 2000; +/** Maximum depth of blocks we're willing to serve as compact blocks to peers + * when requested. For older blocks, a regular BLOCK response will be sent. */ +static const int MAX_CMPCTBLOCK_DEPTH = 5; +/** Maximum depth of blocks we're willing to respond to GETBLOCKTXN requests for. */ +static const int MAX_BLOCKTXN_DEPTH = 10; /** Size of the "block download window": how far ahead of our current height do we fetch? * Larger windows tolerate larger download speed differences between peer, but increase the potential * degree of disordering of blocks on disk (which make reindexing and in the future perhaps pruning |