Skip to content

Commit

Permalink
getBlobNeighbours to remove sorting by blockNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-herasme committed Sep 10, 2024
1 parent 37a9a2f commit 819ced4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/api/src/routers/blob/getBlobNeighbours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,11 @@ async function getBlobNeighbor(
direction === "next"
? [
{ index: "asc" },
{ blockNumber: "asc" },
{ transaction: { index: "asc" } },
{ transaction: { blockNumber: "asc" } },
]
: [
{ index: "desc" },
{ blockNumber: "desc" },
{ transaction: { index: "desc" } },
{ transaction: { blockNumber: "desc" } },
],
Expand Down

0 comments on commit 819ced4

Please sign in to comment.