The AccountService interface doesn't provide any way to return paginated results when querying for accounts an the number of the results is indefinite.
The fix adds a PageSpecification(1, MAX_PAGE_SIZE) page specification parameter when the number of results returned by the vaultService.queryBy<AccountInfo> is indefinite.
This pull request fixes #99 .
The
AccountService
interface doesn't provide any way to return paginated results when querying foraccounts
an the number of the results is indefinite. The fix adds aPageSpecification(1, MAX_PAGE_SIZE)
page specification parameter when the number of results returned by thevaultService.queryBy<AccountInfo>
is indefinite. This pull request fixes #99 .