You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #85 I introduced a number of list queries in x/poe/contracts/query.go. They all have a limit of 30 and no pagination, which should be fine for the first internal testnet, but not enough for anything public. They should be adjusted to paginate over the response until all results are returned.
In particular:
ListValidators
QueryTG4MembersByWeight
QueryTG4Members
The contract support pagination already. We need to update the query types to pass the relevant data:
In #85 I introduced a number of list queries in
x/poe/contracts/query.go
. They all have a limit of 30 and no pagination, which should be fine for the first internal testnet, but not enough for anything public. They should be adjusted to paginate over the response until all results are returned.In particular:
ListValidators
QueryTG4MembersByWeight
QueryTG4Members
The contract support pagination already. We need to update the query types to pass the relevant data:
StartAfter
is any raw entry from the returned list. If this can be handled within the contract package that would be nice.The text was updated successfully, but these errors were encountered: