Skip to content

Commit d6e9c48

Browse files
committed
refactor(cardano-services): remove dead code
1 parent bfb487f commit d6e9c48

File tree

1 file changed

+0
-16
lines changed
  • packages/cardano-services/src/ChainHistory/DbSyncChainHistory

1 file changed

+0
-16
lines changed

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

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,11 @@ export const findTxCollateralsByIds = `
3737
WHERE tx.id = ANY($1)
3838
ORDER BY tx_in.id ASC`;
3939

40-
export const findTxInputsByAddresses = `
41-
${selectTxInput()}
42-
JOIN block ON tx.block_id = block.id
43-
WHERE tx_out.address = ANY($1)
44-
AND block.block_no >= $2
45-
AND block.block_no <= $3
46-
ORDER BY tx_in.id ASC`;
47-
4840
export const findTxOutputsByIds = `
4941
${selectTxOutput()}
5042
WHERE tx.id = ANY($1)
5143
ORDER BY tx_out.id ASC`;
5244

53-
export const findTxOutputsByAddresses = `
54-
${selectTxOutput()}
55-
JOIN block ON tx.block_id = block.id
56-
WHERE tx_out.address = ANY($1)
57-
AND block.block_no >= $2
58-
AND block.block_no <= $3
59-
ORDER BY tx_out.id ASC`;
60-
6145
export const findCollateralOutputsByTxIds = `
6246
${selectTxOutput(true)}
6347
WHERE tx.id = ANY($1)`;

0 commit comments

Comments
 (0)