Fix exception thrown when revealing seed words

feature/default_network_editable
Alexander Tseung 7 years ago
parent 6742a5b272
commit 1d80a4c452
  1. 24
      ui/app/actions.js

@ -345,10 +345,9 @@ function transitionBackward () {
} }
} }
function confirmSeedWords () { function clearSeedWordCache () {
return dispatch => {
dispatch(actions.showLoadingIndication())
log.debug(`background.clearSeedWordCache`) log.debug(`background.clearSeedWordCache`)
return dispatch => {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
background.clearSeedWordCache((err, account) => { background.clearSeedWordCache((err, account) => {
if (err) { if (err) {
@ -361,9 +360,22 @@ function confirmSeedWords () {
resolve(account) resolve(account)
}) })
}) })
.then(() => dispatch(setIsRevealingSeedWords(false))) }
.then(() => dispatch(actions.hideLoadingIndication())) }
.catch(() => dispatch(actions.hideLoadingIndication()))
function confirmSeedWords () {
return async dispatch => {
dispatch(actions.showLoadingIndication())
const account = await dispatch(clearSeedWordCache())
return dispatch(setIsRevealingSeedWords(false))
.then(() => {
dispatch(actions.hideLoadingIndication())
return account
})
.catch(() => {
dispatch(actions.hideLoadingIndication())
return account
})
} }
} }

Loading…
Cancel
Save