diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | ui/app/reducers/app.js | 9 |
2 files changed, 1 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c20aa11d3..4e44f603d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Current Master +- Add network checks for unconfirmed transactions. - Add fiat conversion values to more views. - On fresh install, open a new tab with the MetaMask Introduction video. - Block negative values from transactions. diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index 29d5d9378..9243e53e0 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -16,15 +16,6 @@ function reduceApp (state, action) { } if (pendingTxs) { name = 'confTx' - } else { - try { - if (state.appState.currentView.name === 'confTx') { - name = 'accountDetail' - } - } catch (e) { - null - } - } var defaultView = { |