Revert one cb to previous state.

feature/default_network_editable
Kevin Serrano 8 years ago
parent 5bfb700fa8
commit 592b64a19f
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
  1. 2
      app/scripts/keyring-controller.js
  2. 2
      ui/app/actions.js

@ -186,7 +186,7 @@ module.exports = class KeyringController extends EventEmitter {
this.keyrings = keyrings this.keyrings = keyrings
this.setupAccounts() this.setupAccounts()
this.emit('update') this.emit('update')
cb() cb(null, this.getState())
}) })
.catch((err) => { .catch((err) => {
console.error(err) console.error(err)

@ -161,7 +161,7 @@ function tryUnlockMetamask (password) {
return (dispatch) => { return (dispatch) => {
dispatch(actions.showLoadingIndication()) dispatch(actions.showLoadingIndication())
dispatch(actions.unlockInProgress()) dispatch(actions.unlockInProgress())
background.submitPassword(password, (err) => { background.submitPassword(password, (err, newState) => {
dispatch(actions.hideLoadingIndication()) dispatch(actions.hideLoadingIndication())
if (err) { if (err) {
dispatch(actions.unlockFailed(err.message)) dispatch(actions.unlockFailed(err.message))

Loading…
Cancel
Save