We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ff8b25 commit 58d5b0fCopy full SHA for 58d5b0f
catchup/service.go
@@ -480,7 +480,7 @@ func (s *Service) pipelinedFetch(seedLookback uint64) {
480
minParallelRequests := seedLookback
481
482
// Start the limited requests at max(1, 'seedLookback')
483
- limitedParallelRequests := max(uint64(1), seedLookback)
+ limitedParallelRequests := max(1, seedLookback)
484
485
completed := make(map[basics.Round]chan bool)
486
var wg sync.WaitGroup
0 commit comments