Skip to content

Commit

Permalink
WE MUST REMOVE LIMIT HERE
Browse files Browse the repository at this point in the history
  • Loading branch information
molinju committed Jul 8, 2024
1 parent 424b547 commit 0c3bb1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Controller/UskMintedController.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function uskMintedv2(EntityManagerInterface $entityManager)
{

$usk_minted_repo = $entityManager->getRepository(UskMinted::class);
$usk_minted_all = $usk_minted_repo->findBy([], ["tracked" => "ASC"],null,30000);
$usk_minted_all = $usk_minted_repo->findBy([], ["tracked" => "ASC"]);
$result = [];

foreach($usk_minted_all as $item) {
Expand Down

0 comments on commit 0c3bb1e

Please sign in to comment.