Skip to content

Commit

Permalink
Merge pull request #4266 from connext/main
Browse files Browse the repository at this point in the history
Testnet Sync
  • Loading branch information
preethamr authored May 18, 2023
2 parents a5a3484 + c740264 commit 8fca20a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/adapters/database/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,10 @@ export const getPendingTransfersByDomains = async (
{
offset,
limit,
order: { by: "nonce", direction: orderDirection },
order: [
{ by: "update_time", direction: orderDirection },
{ by: "nonce", direction: orderDirection },
],
},
)
.run(poolToUse);
Expand Down

0 comments on commit 8fca20a

Please sign in to comment.