mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 17:33:23 +01:00
Change fauceting to become a response of an emit.
This commit is contained in:
parent
f5b0795ac5
commit
1cbab788ec
@ -9,7 +9,6 @@ const EventEmitter = require('events').EventEmitter
|
||||
const normalize = require('./lib/sig-util').normalize
|
||||
const encryptor = require('./lib/encryptor')
|
||||
const messageManager = require('./lib/message-manager')
|
||||
const autoFaucet = require('./lib/auto-faucet')
|
||||
const IdStoreMigrator = require('./lib/idStore-migrator')
|
||||
const BN = ethUtil.BN
|
||||
|
||||
@ -160,7 +159,7 @@ module.exports = class KeyringController extends EventEmitter {
|
||||
this.configManager.setSelectedAccount(firstAccount)
|
||||
|
||||
this.placeSeedWords()
|
||||
autoFaucet(hexAccount)
|
||||
this.emit('newAccount', hexAccount)
|
||||
this.setupAccounts(accounts)
|
||||
this.persistAllKeyrings()
|
||||
.then(() => {
|
||||
|
@ -7,6 +7,8 @@ const HostStore = require('./lib/remote-store.js').HostStore
|
||||
const Web3 = require('web3')
|
||||
const ConfigManager = require('./lib/config-manager')
|
||||
const extension = require('./lib/extension')
|
||||
const autoFaucet = require('./lib/auto-faucet')
|
||||
|
||||
|
||||
module.exports = class MetamaskController {
|
||||
|
||||
@ -174,6 +176,10 @@ module.exports = class MetamaskController {
|
||||
this.sendUpdate()
|
||||
})
|
||||
|
||||
this.keyringController.on('newAccount', (account) => {
|
||||
autoFaucet(account)
|
||||
})
|
||||
|
||||
// keyringController substate
|
||||
function keyringControllerToPublic (state) {
|
||||
return {
|
||||
|
@ -261,7 +261,7 @@ function showInfoPage () {
|
||||
|
||||
function setselectedAccount (address) {
|
||||
return (dispatch) => {
|
||||
background.setselectedAccount(address)
|
||||
background.setSelectedAccount(address)
|
||||
}
|
||||
}
|
||||
|
||||
@ -455,7 +455,7 @@ function lockMetamask () {
|
||||
function showAccountDetail (address) {
|
||||
return (dispatch) => {
|
||||
dispatch(actions.showLoadingIndication())
|
||||
background.setselectedAccount(address, (err, address) => {
|
||||
background.setSelectedAccount(address, (err, address) => {
|
||||
dispatch(actions.hideLoadingIndication())
|
||||
if (err) {
|
||||
return dispatch(actions.displayWarning(err.message))
|
||||
|
Loading…
Reference in New Issue
Block a user