File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cardano-services/src/ChainHistory/DbSyncChainHistory Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -263,9 +263,9 @@ export class ChainHistoryBuilder {
263263 if ( result . rows . length === 0 ) return [ ] ;
264264
265265 const txOutIds = result . rows . flatMap ( ( txOut ) => BigInt ( txOut . id ) ) ;
266- // In case or collateralReturn requests (collateral = true) assets in the output can't be read as for regular outputs:
266+ // In case of collateralReturn requests (collateral = true) assets in the output can't be read as for regular outputs:
267267 // db-sync stores assets from collateral outputs in collateral_tx_out.multi_assets_descr column rather than in
268- // ma_tx_out table like for regular outputs. To have a complete collateralReturn, given column should be red and parsed.
268+ // ma_tx_out table like for regular outputs. To have a complete collateralReturn, given column should be read and parsed.
269269 const multiAssets = collateral ? new Map ( ) : await this . queryMultiAssetsByTxOut ( txOutIds ) ;
270270 const referenceScripts = await this . queryReferenceScriptsByTxOut ( result . rows ) ;
271271
You can’t perform that action at this time.
0 commit comments