diff options
author | Dan Finlay <flyswatter@users.noreply.github.com> | 2017-03-23 06:39:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-23 06:39:20 +0800 |
commit | 9545ef3ba80b7abeffacb7914bd4232f9a22a5e1 (patch) | |
tree | 840ee52c25480980f66d3e3ed4857457b3048f46 | |
parent | 5d149258427b25f34dca89e5dfaba57a4f1cb95b (diff) | |
parent | 5b81f7120b3c7c3c3a16246a9d5705fcab4f91b9 (diff) | |
download | tangerine-wallet-browser-9545ef3ba80b7abeffacb7914bd4232f9a22a5e1.tar tangerine-wallet-browser-9545ef3ba80b7abeffacb7914bd4232f9a22a5e1.tar.gz tangerine-wallet-browser-9545ef3ba80b7abeffacb7914bd4232f9a22a5e1.tar.bz2 tangerine-wallet-browser-9545ef3ba80b7abeffacb7914bd4232f9a22a5e1.tar.lz tangerine-wallet-browser-9545ef3ba80b7abeffacb7914bd4232f9a22a5e1.tar.xz tangerine-wallet-browser-9545ef3ba80b7abeffacb7914bd4232f9a22a5e1.tar.zst tangerine-wallet-browser-9545ef3ba80b7abeffacb7914bd4232f9a22a5e1.zip |
Merge branch 'master' into i1193-errorstylefix
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/scripts/lib/eth-store.js | 6 | ||||
-rw-r--r-- | ui/app/actions.js | 7 | ||||
-rw-r--r-- | ui/app/reducers/app.js | 1 |
4 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6621d89f4..ce9d013e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Added an address book functionality that remembers the last 15 unique addresses sent to. - Can now change network to custom RPC URL from lock screen. - Removed support for old, lightwallet based vault. Users who have not opened app in over a month will need to recover with their seed phrase. This will allow Firefox support sooner. +- Fixed bug where spinner wouldn't disappear on incorrect password submission on seed word reveal. - Polish the private key UI. ## 3.4.0 2017-3-8 diff --git a/app/scripts/lib/eth-store.js b/app/scripts/lib/eth-store.js index 8812a507b..243253df2 100644 --- a/app/scripts/lib/eth-store.js +++ b/app/scripts/lib/eth-store.js @@ -19,6 +19,8 @@ class EthereumStore extends ObservableStore { super({ accounts: {}, transactions: {}, + currentBlockNumber: '0', + currentBlockHash: '', }) this._provider = opts.provider this._query = new EthQuery(this._provider) @@ -69,6 +71,8 @@ class EthereumStore extends ObservableStore { _updateForBlock (block) { const blockNumber = '0x' + block.number.toString('hex') this._currentBlockNumber = blockNumber + this.updateState({ currentBlockNumber: parseInt(blockNumber) }) + this.updateState({ currentBlockHash: `0x${block.hash.toString('hex')}`}) async.parallel([ this._updateAccounts.bind(this), this._updateTransactions.bind(this, blockNumber), @@ -129,4 +133,4 @@ class EthereumStore extends ObservableStore { } -module.exports = EthereumStore
\ No newline at end of file +module.exports = EthereumStore diff --git a/ui/app/actions.js b/ui/app/actions.js index 9d6676d01..d02b7dcaa 100644 --- a/ui/app/actions.js +++ b/ui/app/actions.js @@ -269,11 +269,12 @@ function requestRevealSeed (password) { dispatch(actions.showLoadingIndication()) log.debug(`background.submitPassword`) background.submitPassword(password, (err) => { - if (err) return dispatch(actions.displayWarning(err.message)) + if (err) { + return dispatch(actions.displayWarning(err.message)) + } log.debug(`background.placeSeedWords`) background.placeSeedWords((err) => { if (err) return dispatch(actions.displayWarning(err.message)) - dispatch(actions.hideLoadingIndication()) }) }) } @@ -296,10 +297,10 @@ function importNewAccount (strategy, args) { dispatch(actions.showLoadingIndication('This may take a while, be patient.')) log.debug(`background.importAccountWithStrategy`) background.importAccountWithStrategy(strategy, args, (err) => { - dispatch(actions.hideLoadingIndication()) if (err) return dispatch(actions.displayWarning(err.message)) log.debug(`background.getState`) background.getState((err, newState) => { + dispatch(actions.hideLoadingIndication()) if (err) { return dispatch(actions.displayWarning(err.message)) } diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index 7ea1e1d7c..b9e3f7b16 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -426,6 +426,7 @@ function reduceApp (state, action) { case actions.DISPLAY_WARNING: return extend(appState, { warning: action.value, + isLoading: false, }) case actions.HIDE_WARNING: |