We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e39e51 commit 90cc07aCopy full SHA for 90cc07a
packages/cardano-services/src/ChainHistory/DbSyncChainHistory/ChainHistoryBuilder.ts
@@ -261,7 +261,7 @@ export class ChainHistoryBuilder {
261
if (result.rows.length === 0) return [];
262
263
const txOutIds = result.rows.flatMap((txOut) => BigInt(txOut.id));
264
- const multiAssets = await this.queryMultiAssetsByTxOut(txOutIds);
+ const multiAssets = collateral ? new Map() : await this.queryMultiAssetsByTxOut(txOutIds);
265
const referenceScripts = await this.queryReferenceScriptsByTxOut(result.rows);
266
267
return result.rows.map((txOut) =>
0 commit comments