Skip to content

Commit

Permalink
Ensure that mirror node returns credits in ascending order
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsmithies committed Oct 10, 2024
1 parent f739282 commit 91e0854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Trustchain/Mirrornode.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function forProduction()
*/
public static function credits($token_id): self
{
$path = "/tokens/{$token_id}/nfts?limit=100";
$path = "/tokens/{$token_id}/nfts?order=asc&limit=100";

return new self($path);
}
Expand Down

0 comments on commit 91e0854

Please sign in to comment.