aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx-details.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-09-09 03:49:57 +0800
committerDan Finlay <dan@danfinlay.com>2016-09-09 03:49:57 +0800
commit762bf2f48adbe1ff3faa34ec505f5685cbe78f82 (patch)
tree18664b72cbc39e0b12548f6aa69da1b113b30691 /ui/app/components/pending-tx-details.js
parent8d981ac87f5e56f58da1429f5a524adf3a077ba5 (diff)
parent80847739b2d79cc440aec512c84af2769bb06805 (diff)
downloadtangerine-wallet-browser-762bf2f48adbe1ff3faa34ec505f5685cbe78f82.tar
tangerine-wallet-browser-762bf2f48adbe1ff3faa34ec505f5685cbe78f82.tar.gz
tangerine-wallet-browser-762bf2f48adbe1ff3faa34ec505f5685cbe78f82.tar.bz2
tangerine-wallet-browser-762bf2f48adbe1ff3faa34ec505f5685cbe78f82.tar.lz
tangerine-wallet-browser-762bf2f48adbe1ff3faa34ec505f5685cbe78f82.tar.xz
tangerine-wallet-browser-762bf2f48adbe1ff3faa34ec505f5685cbe78f82.tar.zst
tangerine-wallet-browser-762bf2f48adbe1ff3faa34ec505f5685cbe78f82.zip
Merge branch 'master' into AddNewLogo
Diffstat (limited to 'ui/app/components/pending-tx-details.js')
-rw-r--r--ui/app/components/pending-tx-details.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js
index 2fb0eae3f..c2e39a1ca 100644
--- a/ui/app/components/pending-tx-details.js
+++ b/ui/app/components/pending-tx-details.js
@@ -4,9 +4,8 @@ const inherits = require('util').inherits
const carratInline = require('fs').readFileSync('./images/forward-carrat.svg', 'utf8')
const MiniAccountPanel = require('./mini-account-panel')
-const EtherBalance = require('./eth-balance')
+const EthBalance = require('./eth-balance')
const addressSummary = require('../util').addressSummary
-const formatBalance = require('../util').formatBalance
const nameForAddress = require('../../lib/contract-namer')
const ethUtil = require('ethereumjs-util')
const BN = ethUtil.BN
@@ -70,7 +69,7 @@ PTXP.render = function () {
fontFamily: 'Montserrat Light, Montserrat, sans-serif',
},
}, [
- h(EtherBalance, {
+ h(EthBalance, {
value: balance,
inline: true,
labelColor: '#F7861C',
@@ -107,12 +106,12 @@ PTXP.render = function () {
h('.row', [
h('.cell.label', 'Amount'),
- h('.cell.value', formatBalance(txParams.value)),
+ h(EthBalance, { value: txParams.value }),
]),
h('.cell.row', [
h('.cell.label', 'Max Transaction Fee'),
- h('.cell.value', formatBalance(txFee.toString(16))),
+ h(EthBalance, { value: txFee.toString(16) }),
]),
h('.cell.row', {
@@ -129,7 +128,7 @@ PTXP.render = function () {
alignItems: 'center',
},
}, [
- h(EtherBalance, {
+ h(EthBalance, {
value: maxCost.toString(16),
inline: true,
labelColor: 'black',