File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed
packages/cardano-services/src/ChainHistory/DbSyncChainHistory Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff 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-
4840export 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-
6145export const findCollateralOutputsByTxIds = `
6246 ${ selectTxOutput ( true ) }
6347 WHERE tx.id = ANY($1)` ;
You can’t perform that action at this time.
0 commit comments