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

Revert to normal balances.

This commit is contained in:
Kevin Serrano 2017-10-04 12:10:01 -07:00
parent f12504cd09
commit 27c72ee565
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
2 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ AccountDetailScreen.prototype.render = function () {
var selected = props.address || Object.keys(props.accounts)[0]
var checksumAddress = selected && ethUtil.toChecksumAddress(selected)
var identity = props.identities[selected]
var account = props.computedBalances[selected]
var account = props.accounts[selected]
const { network, conversionRate, currentCurrency } = props
return (
@ -181,7 +181,7 @@ AccountDetailScreen.prototype.render = function () {
}, [
h(EthBalance, {
value: account && account.ethBalance,
value: account && account.balance,
conversionRate,
currentCurrency,
style: {

View File

@ -33,7 +33,7 @@ function PendingTx () {
PendingTx.prototype.render = function () {
const props = this.props
const { currentCurrency, blockGasLimit, computedBalances } = props
const { currentCurrency, blockGasLimit } = props
const conversionRate = props.conversionRate
const txMeta = this.gatherTxMeta()
@ -42,8 +42,8 @@ PendingTx.prototype.render = function () {
// Account Details
const address = txParams.from || props.selectedAddress
const identity = props.identities[address] || { address: address }
const account = computedBalances[address]
const balance = account ? account.ethBalance : '0x0'
const account = props.accounts[address]
const balance = account ? account.balance : '0x0'
// recipient check
const isValidAddress = !txParams.to || util.isValidAddress(txParams.to)