Skip to content

Commit

Permalink
🐛 Fix the logic to disable checking pending transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Jul 30, 2018
1 parent 24f68cf commit 3b1dadf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions/transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ export const transactionsUpdated = ({
type: actionTypes.transactionsUpdated,
});
// eslint-disable-next-line no-constant-condition
if (pendingTransactions.length || true) {
// "|| true" above was added to disable this, because this caused pending transactions
if (pendingTransactions.length && false) {
// "&& false" above was added to disable this, because this caused pending transactions
// to disappear from the list before they appeared again as confirmed.
// Currently, the problem is that a pending transaction will not be removed
// from the list if it fails. Caused by Lisk Core 1.0.0
Expand Down

0 comments on commit 3b1dadf

Please sign in to comment.