Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
🐛 Set proper param format
Browse files Browse the repository at this point in the history
  • Loading branch information
sameersubudhi committed Feb 8, 2024
1 parent c221b38 commit b9748f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/export/shared/transactionsExport.js
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ const getEntriesByChronology = async (params, sortedBlocks, sortedTransactions,
const txID = tx.id;
const topicTxID = EVENT_TOPIC_PREFIX.TX_ID.concat(txID);
const txHeight = tx.block.height;
const allBlockEvents = await getAllEventsInAsc({ height: txHeight });
const allBlockEvents = await getAllEventsInAsc({ height: String(txHeight) });
return allBlockEvents.find(
ev =>
ev.module === MODULE.INTEROPERABILITY &&
Expand Down

0 comments on commit b9748f5

Please sign in to comment.