File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,10 @@ import (
39
39
)
40
40
41
41
var (
42
- MaxBlockFetch = 128 // Amount of blocks to be fetched per retrieval request
43
- MaxHeaderFetch = 192 // Amount of block headers to be fetched per retrieval request
44
- MaxSkeletonSize = 128 // Number of header fetches to need for a skeleton assembly
45
- MaxReceiptFetch = 256 // Amount of transaction receipts to allow fetching per request
42
+ MaxBlockFetch = 128 // Number of blocks to be fetched per retrieval request
43
+ MaxHeaderFetch = 192 // Number of block headers to be fetched per retrieval request
44
+ MaxSkeletonSize = 128 // Number of header fetches needed for a skeleton assembly
45
+ MaxReceiptFetch = 256 // Number of transaction receipts to allow fetching per request
46
46
47
47
maxQueuedHeaders = 32 * 1024 // [eth/62] Maximum number of headers to queue for import (DOS protection)
48
48
maxHeadersProcess = 2048 // Number of header download results to import at once into the chain
Original file line number Diff line number Diff line change @@ -1517,7 +1517,7 @@ func (s *SyncState) TxIndexRemainingBlocks() hexutil.Uint64 {
1517
1517
}
1518
1518
1519
1519
// Syncing returns false in case the node is currently not syncing with the network. It can be up-to-date or has not
1520
- // yet received the latest block headers from its pears . In case it is synchronizing:
1520
+ // yet received the latest block headers from its peers . In case it is synchronizing:
1521
1521
// - startingBlock: block number this node started to synchronize from
1522
1522
// - currentBlock: block number this node is currently importing
1523
1523
// - highestBlock: block number of the highest block header this node has received from peers
You can’t perform that action at this time.
0 commit comments