Rewrite a sync comment
This commit is contained in:
parent
270070f2d9
commit
3d9888f736
|
|
@ -36,9 +36,10 @@ const FANOUT: usize = 4;
|
||||||
/// retries may be concurrent, inner retries are sequential.
|
/// retries may be concurrent, inner retries are sequential.
|
||||||
const BLOCK_DOWNLOAD_RETRY_LIMIT: usize = 2;
|
const BLOCK_DOWNLOAD_RETRY_LIMIT: usize = 2;
|
||||||
|
|
||||||
/// A lower bound on the user-specified lookahead limit, set to two
|
/// A lower bound on the user-specified lookahead limit.
|
||||||
/// checkpoint intervals so that we're sure that the lookahead limit
|
///
|
||||||
/// always contains at least one complete checkpoint interval.
|
/// Set to two checkpoint intervals, so that we're sure that the lookahead
|
||||||
|
/// limit always contains at least one complete checkpoint.
|
||||||
const MIN_LOOKAHEAD_LIMIT: usize = zebra_consensus::MAX_CHECKPOINT_HEIGHT_GAP * 2;
|
const MIN_LOOKAHEAD_LIMIT: usize = zebra_consensus::MAX_CHECKPOINT_HEIGHT_GAP * 2;
|
||||||
|
|
||||||
/// Controls how long we wait for a tips response to return.
|
/// Controls how long we wait for a tips response to return.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue