Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(wallet): ensure transactions update on confirm
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed May 11, 2020
1 parent 4fd938d commit fbe93c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/reducers/transaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ const ACTION_HANDLERS = {
},
[RECEIVE_TRANSACTIONS]: (state, { transactions }) => {
state.transactionLoading = false
state.transactions = uniqBy(state.transactions.concat(transactions), 'txHash')
state.transactions = uniqBy(transactions.concat(state.transactions), 'txHash')
},
[TRANSACTION_SUCCESSFUL]: (state, { internalId }) => {
const txIndex = state.transactionsSending.findIndex(item => item.internalId === internalId)
Expand Down

0 comments on commit fbe93c6

Please sign in to comment.