mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Merge pull request #858 from MetaMask/i842-WaitForSeedWord
I842 wait for seed word
This commit is contained in:
commit
e14efa8f17
@ -171,10 +171,15 @@ module.exports = class KeyringController extends EventEmitter {
|
||||
})
|
||||
}
|
||||
|
||||
placeSeedWords () {
|
||||
placeSeedWords (cb) {
|
||||
const firstKeyring = this.keyrings[0]
|
||||
const seedWords = firstKeyring.serialize().mnemonic
|
||||
this.configManager.setSeedWords(seedWords)
|
||||
|
||||
if (cb) {
|
||||
cb()
|
||||
}
|
||||
this.emit('update')
|
||||
}
|
||||
|
||||
submitPassword (password, cb) {
|
||||
|
@ -3,9 +3,15 @@ var linkGen = require('../../ui/lib/account-link')
|
||||
|
||||
describe('account-link', function() {
|
||||
|
||||
it('adds testnet prefix to morden test network', function() {
|
||||
it('adds morden prefix to morden test network', function() {
|
||||
var result = linkGen('account', '2')
|
||||
assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected')
|
||||
assert.notEqual(result.indexOf('morden'), -1, 'testnet included')
|
||||
assert.notEqual(result.indexOf('account'), -1, 'account included')
|
||||
})
|
||||
|
||||
it('adds testnet prefix to ropsten test network', function() {
|
||||
var result = linkGen('account', '3')
|
||||
assert.notEqual(result.indexOf('testnet'), -1, 'testnet included')
|
||||
assert.notEqual(result.indexOf('account'), -1, 'account included')
|
||||
})
|
||||
|
||||
|
@ -221,9 +221,11 @@ function requestRevealSeed (password) {
|
||||
return (dispatch) => {
|
||||
dispatch(actions.showLoadingIndication())
|
||||
background.submitPassword(password, (err) => {
|
||||
dispatch(actions.hideLoadingIndication())
|
||||
if (err) return dispatch(actions.displayWarning(err.message))
|
||||
background.placeSeedWords()
|
||||
background.placeSeedWords((err) => {
|
||||
if (err) return dispatch(actions.displayWarning(err.message))
|
||||
dispatch(actions.hideLoadingIndication())
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
module.exports = function (address, network) {
|
||||
module.exports = function(address, network) {
|
||||
const net = parseInt(network)
|
||||
let link
|
||||
|
||||
@ -7,10 +7,10 @@ module.exports = function (address, network) {
|
||||
link = `http://etherscan.io/address/${address}`
|
||||
break
|
||||
case 2: // morden test net
|
||||
link = `http://testnet.etherscan.io/address/${address}`
|
||||
link = `http://morden.etherscan.io/address/${address}`
|
||||
break
|
||||
case 3: // ropsten test net
|
||||
link = ''
|
||||
link = `http://testnet.etherscan.io/address/${address}`
|
||||
break
|
||||
default:
|
||||
link = ''
|
||||
|
Loading…
Reference in New Issue
Block a user