Skip to content

Commit

Permalink
feat(import-scripts): fix typo in getTransactionsForRange
Browse files Browse the repository at this point in the history
  • Loading branch information
karlprieb authored and djwhitt committed Jan 6, 2025
1 parent 25536bc commit acdbe27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/import-data/fetch-data-gql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ const getTransactionsForRange = async ({ min, max }: BlockRange) => {
rootTxIdCache.set(bundleId, { rootTxId, bundleType });
if (bundleType === 'ans102') {
if (!ans102.has(blockHeight)) {
ans104.set(blockHeight, new Set());
ans102.set(blockHeight, new Set());
}
ans102.get(blockHeight)?.add(rootTxId);
} else if (bundleType === 'ans104') {
Expand Down

0 comments on commit acdbe27

Please sign in to comment.