Skip to content

Commit bfb487f

Browse files
committed
refactor(cardano-services): remove meaningless order by for collateral outputs query
1 parent d691e68 commit bfb487f

File tree

1 file changed

+1
-2
lines changed
  • packages/cardano-services/src/ChainHistory/DbSyncChainHistory

1 file changed

+1
-2
lines changed

packages/cardano-services/src/ChainHistory/DbSyncChainHistory/queries.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ export const findTxOutputsByAddresses = `
6060

6161
export const findCollateralOutputsByTxIds = `
6262
${selectTxOutput(true)}
63-
WHERE tx.id = ANY($1)
64-
ORDER BY tx_out.id ASC`;
63+
WHERE tx.id = ANY($1)`;
6564

6665
export const findTip = `
6766
SELECT

0 commit comments

Comments
 (0)