Skip to content

Commit

Permalink
fix(cardano-services): use correct asset limit pagination for typeorm…
Browse files Browse the repository at this point in the history
… asset provider
  • Loading branch information
mchappell committed May 9, 2024
1 parent 0bf27b2 commit 8c13737
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ const serviceMapFactory = (options: ServiceMapFactoryOptions) => {
: new CardanoTokenRegistry({ logger }, args);

return new TypeormAssetProvider(
{ paginationPageSizeLimit: args.paginationPageSizeLimit! },
{ paginationPageSizeLimit: Math.min(args.paginationPageSizeLimit! * 10, PAGINATION_PAGE_SIZE_LIMIT_ASSETS) },
{
connectionConfig$,
entities: getEntities(['asset']),
Expand Down

0 comments on commit 8c13737

Please sign in to comment.