1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Implement auto-fauceting

This commit is contained in:
Kevin Serrano 2016-10-31 09:47:20 -07:00
parent f9409793d8
commit 6fc498f8a0
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4

View File

@ -8,6 +8,7 @@ const EthQuery = require('eth-query')
const BN = ethUtil.BN
const Transaction = require('ethereumjs-tx')
const createId = require('web3-provider-engine/util/random-id')
const autoFaucet = require('./lib/auto-faucet')
// TEMPORARY UNTIL FULL DEPRECATION:
const IdStoreMigrator = require('./lib/idStore-migrator')
@ -90,7 +91,11 @@ module.exports = class KeyringController extends EventEmitter {
if (!serialized) {
// TEMPORARY SINGLE-KEYRING CONFIG:
return this.addNewKeyring('HD Key Tree', null, cb)
return this.addNewKeyring('HD Key Tree', null, (err, newState) => {
const firstAccount = this.keyrings[0].getAccounts()[0]
autoFaucet(ethUtil.addHexPrefix(firstAccount))
cb(err, newState)
})
} else {
return this.submitPassword(password, cb)
}