Skip to content

Commit

Permalink
fixup! feat: add optional CBOR representation to GET_TRANSACTION
Browse files Browse the repository at this point in the history
  • Loading branch information
iccicci committed Nov 29, 2024
1 parent 671636e commit 7d3b2b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/tests/utils/transaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ describe('transaction utils', () => {
// (promise limiter concurrency set to 500 by default)
for (let i = 0; i < 5000; i++) {
promises.push(
transactionUtils.fetchTransactionData(`txHash-${i}`, Math.random() > 0.3).then(data => {
transactionUtils.fetchTransactionData(`txHash-${i}`, true).then(data => {
// console.log(`Fetched txHash-${i}`);
return data;
}),
Expand Down

0 comments on commit 7d3b2b9

Please sign in to comment.