temporarily make MaxRequestLength a var

This commit is contained in:
Lucas Molas 2020-07-31 09:18:13 -03:00
parent 0d77c96bda
commit ccaca48140

View File

@ -20,7 +20,9 @@ const BlockSyncProtocolID = "/fil/sync/blk/0.0.1"
// use of `GetBlocks()`. It seems the expectation of that API is to
// fetch any amount of blocks leaving it to the internal logic here
// to partition and reassemble the requests if they go above the maximum.
const MaxRequestLength = uint64(build.ForkLengthThreshold)
// (Also as a consequence of this temporarily removing the `const`
// qualifier to avoid "const initializer [...] is not a constant" error.)
var MaxRequestLength = uint64(build.ForkLengthThreshold)
// Extracted constants from the code.
// FIXME: Should be reviewed and confirmed.