Skip to content

Commit

Permalink
fix: remove early test return
Browse files Browse the repository at this point in the history
  • Loading branch information
fbwoolf committed Jun 11, 2024
1 parent 9c67eaf commit e888a71
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export function useUpdateSubmittedTransactions() {
(data: MempoolTransaction[]) => {
const pendingTxids = data.map(tx => tx.tx_id);
submittedTransactions.map(tx => {
return;
if (pendingTxids.includes(safelyFormatHexTxid(tx.txid)))
return submittedTransactionsActions.transactionEnteredMempool(tx.txid);
return;
Expand Down

0 comments on commit e888a71

Please sign in to comment.