Skip to content

Commit

Permalink
remove number of logs limit
Browse files Browse the repository at this point in the history
  • Loading branch information
envestcc committed Jul 17, 2024
1 parent e5358b2 commit cd51767
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions api/coreservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -1401,12 +1401,6 @@ func (core *coreService) LogsInRange(filter *logfilter.LogFilter, start, end, pa
if err != nil {
return nil, nil, err
}
if paginationSize == 0 {
paginationSize = 1000
}
if paginationSize > 5000 {
paginationSize = 5000
}
// getLogs via range Blooom filter [start, end]
blockNumbers, err := core.bfIndexer.FilterBlocksInRange(filter, start, end, paginationSize)
if err != nil {
Expand Down

0 comments on commit cd51767

Please sign in to comment.