-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
Description
Line 153 in 1e1ca15
| return defaultPerPage |
func validatePerPage(perPage int) int {
if perPage < 1 || perPage > maxPerPage {
return defaultPerPage
}
return perPage
}
if perPage > maxPerPage we should return maxPerPage rather than defaultPerPage.
This is related with cosmos/cosmos-sdk#2894
And we are talking about increase the perPage to 100 to 200 there
Reactions are currently unavailable