Skip to content

Commit 58d5b0f

Browse files
ccejannotti
andauthored
Update catchup/service.go
Co-authored-by: John Jannotti <jannotti@gmail.com>
1 parent 9ff8b25 commit 58d5b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

catchup/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ func (s *Service) pipelinedFetch(seedLookback uint64) {
480480
minParallelRequests := seedLookback
481481

482482
// Start the limited requests at max(1, 'seedLookback')
483-
limitedParallelRequests := max(uint64(1), seedLookback)
483+
limitedParallelRequests := max(1, seedLookback)
484484

485485
completed := make(map[basics.Round]chan bool)
486486
var wg sync.WaitGroup

0 commit comments

Comments
 (0)