Skip to content

Commit

Permalink
Merge pull request #75 from dappforce/stuck-jobs
Browse files Browse the repository at this point in the history
Remove job when status stuck
  • Loading branch information
olehmell authored Mar 13, 2024
2 parents 139521c + c324df0 commit 1a1ce62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/txHistory/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const getAccountTxHistoryWithQueue = async (props: GetAccountTransactions
await jobByAddress.remove()

actualData = true
} else if (jobState === 'failed') {
} else if (jobState === 'failed' || jobState === 'stuck') {
await jobByAddress.remove()

actualData = false
Expand Down

0 comments on commit 1a1ce62

Please sign in to comment.