Skip to content

Commit

Permalink
Update getTransactionsByHashes.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
arhtudormorar authored Dec 24, 2024
1 parent b3d6b94 commit 5ebb1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apiCalls/transactions/getTransactionsByHashes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const getTransactionsByHashes = async (

return pendingTransactions.map(({ hash, previousStatus }) => {
const txOnNetwork = responseData.find(
(txResponse: any) => txResponse?.txHash === hash
(txResponse: any) => txResponse?.txHash === hash //TODO: add NetworkTransactionType
);

return {
Expand Down

0 comments on commit 5ebb1d2

Please sign in to comment.