From 2d6a82e36d4f4f67f68896a5a189714c15baae9d Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Mon, 4 Apr 2016 15:35:41 -0700 Subject: Add mayBeFauceting boolean to account object This boolean is computed from these requirements: - The user is on the testnet rpc - The account is index 0 The UI is responsible for checking the account balancing and indicating if fauceting is indeed pending or not. --- app/scripts/lib/idStore.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'app/scripts') diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index 7fb5a6885..8ac5185db 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -9,6 +9,7 @@ const extend = require('xtend') const createId = require('web3-provider-engine/util/random-id') const autoFaucet = require('./auto-faucet') const configManager = require('./config-manager-singleton') +const DEFAULT_RPC = 'https://rawtestrpc.metamask.io/' module.exports = IdentityStore @@ -211,12 +212,28 @@ IdentityStore.prototype._loadIdentities = function(){ name: 'Wallet ' + (i+1), img: 'QmW6hcwYzXrNkuHrpvo58YeZvbZxUddv69ATSHY3BHpPdd', address: address, + mayBeFauceting: this._mayBeFauceting(i), } this._currentState.identities[address] = identity }) this._didUpdate() } +// mayBeFauceting +// If on testnet, index 0 may be fauceting. +// The UI will have to check the balance to know. +// If there is no balance and it mayBeFauceting, +// then it is in fact fauceting. +IdentityStore.prototype._mayBeFauceting = function(i) { + var config = configManager.getProvider() + if (i === 0 && + config.type === 'rpc' && + config.rpcTarget === DEFAULT_RPC) { + return true + } + return false +} + // // keyStore managment - unlocking + deserialization // -- cgit v1.2.3