diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-07-07 13:48:02 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-07-07 13:48:02 +0800 |
commit | ce463f3aff07c3cb73370cc1446a6b64f91ceb05 (patch) | |
tree | 58daf7f63d4e76c63ac5c8477f270cd8c95e9068 /ui/app | |
parent | 7481f7c3df72f5616615fcd74537d1f091b1bc4b (diff) | |
download | tangerine-wallet-browser-ce463f3aff07c3cb73370cc1446a6b64f91ceb05.tar tangerine-wallet-browser-ce463f3aff07c3cb73370cc1446a6b64f91ceb05.tar.gz tangerine-wallet-browser-ce463f3aff07c3cb73370cc1446a6b64f91ceb05.tar.bz2 tangerine-wallet-browser-ce463f3aff07c3cb73370cc1446a6b64f91ceb05.tar.lz tangerine-wallet-browser-ce463f3aff07c3cb73370cc1446a6b64f91ceb05.tar.xz tangerine-wallet-browser-ce463f3aff07c3cb73370cc1446a6b64f91ceb05.tar.zst tangerine-wallet-browser-ce463f3aff07c3cb73370cc1446a6b64f91ceb05.zip |
Fixed up pending-tx-details
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/eth-balance.js | 3 | ||||
-rw-r--r-- | ui/app/components/pending-tx-details.js | 47 | ||||
-rw-r--r-- | ui/app/reducers.js | 1 |
3 files changed, 27 insertions, 24 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js index 510b620f3..288a0fcaf 100644 --- a/ui/app/components/eth-balance.js +++ b/ui/app/components/eth-balance.js @@ -14,7 +14,8 @@ function EthBalanceComponent () { EthBalanceComponent.prototype.render = function () { var state = this.props var style = state.style - var value = formatBalance(state.value) + + const value = formatBalance(state.value) return ( diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js index 04e9cd2cd..369104089 100644 --- a/ui/app/components/pending-tx-details.js +++ b/ui/app/components/pending-tx-details.js @@ -4,10 +4,14 @@ const inherits = require('util').inherits const MiniAccountPanel = require('./mini-account-panel') const addressSummary = require('../util').addressSummary -const readableDate = require('../util').readableDate const formatBalance = require('../util').formatBalance const nameForAddress = require('../../lib/contract-namer') -const BN = require('ethereumjs-util').BN +const ethUtil = require('ethereumjs-util') +const BN = ethUtil.BN + +const baseGasFee = new BN('21000', 10) +const gasCost = new BN('10000000000', 10) +const baseFeeHex = baseGasFee.mul(gasCost).toString(16) module.exports = PendingTxDetails @@ -25,11 +29,11 @@ PTXP.render = function () { var txParams = txData.txParams || {} var address = txParams.from || props.selectedAddress var identity = props.identities[address] || { address: address } - var account = props.accounts[address] || { address: address } - - var isContractDeploy = !('to' in txParams) - var maxCost = (new BN(txParams.value, 16) + new BN(txParams.gas, 16)).toString(16) + var gasCost = ethUtil.stripHexPrefix(txParams.gas || baseFeeHex) + var txValue = ethUtil.stripHexPrefix(txParams.value || '0x0') + var maxCost = ((new BN(txValue, 16)).add(new BN(gasCost, 16))).toString(16) + var dataLength = txParams.data ? txParams.data.length - 2 : 0 return ( h('div', [ @@ -86,7 +90,7 @@ PTXP.render = function () { h('.cell.row', [ h('.cell.label', 'Max Transaction Fee'), - h('.cell.value', formatBalance(txParams.gas).formatted), + h('.cell.value', formatBalance(gasCost).formatted), ]), h('.cell.row', { @@ -103,11 +107,11 @@ PTXP.render = function () { style: { background: '#f7f7f7', paddingBottom: '0px', - } + }, }, [ h('.cell.label'), - h('.cell.value', `Data included: ${txParams.data.length - 2} bytes`) - ]) + h('.cell.value', `Data included: ${dataLength} bytes`), + ]), ]), // End of Table this.warnIfNeeded(), @@ -116,15 +120,10 @@ PTXP.render = function () { ) } -PTXP.miniAccountPanelForRecipient = function() { +PTXP.miniAccountPanelForRecipient = function () { var props = this.props var txData = props.txData - var txParams = txData.txParams || {} - var address = txParams.from || props.selectedAddress - var identity = props.identities[address] || { address: address } - var account = props.accounts[address] || { address: address } - var isContractDeploy = !('to' in txParams) // If it's not a contract deploy, send to the account @@ -134,14 +133,14 @@ PTXP.miniAccountPanelForRecipient = function() { nameForAddress(txParams.to), addressSummary(txParams.to, 6, 4, false), ], - imageSeed: address, + imageSeed: txParams.to, imageifyIdenticons: props.imageifyIdenticons, picOrder: 'left', }) } else { - return h(MiniAccountPanel, { + return h(MiniAccountPanel, { attrs: [ - 'New Contract' + 'New Contract', ], imageifyIdenticons: props.imageifyIdenticons, picOrder: 'left', @@ -151,8 +150,12 @@ PTXP.miniAccountPanelForRecipient = function() { // Should analyze if there is a DELEGATECALL opcode // in the recipient contract, and show a warning if so. -PTXP.warnIfNeeded = function() { - return null +PTXP.warnIfNeeded = function () { + const containsDelegateCall = !!this.props.txData.containsDelegateCall + + if (!containsDelegateCall) { + return null + } return h('span.error', { style: { @@ -160,7 +163,7 @@ PTXP.warnIfNeeded = function() { fontSize: '13px', display: 'flex', justifyContent: 'center', - } + }, }, [ h('i.fa.fa-lg.fa-info-circle', { style: { margin: '5px' } }), h('span', ' Your identity may be used in other contracts!'), diff --git a/ui/app/reducers.js b/ui/app/reducers.js index 8a8f1c72b..f198758ea 100644 --- a/ui/app/reducers.js +++ b/ui/app/reducers.js @@ -35,7 +35,6 @@ function rootReducer (state, action) { state.appState = reduceApp(state, action) - console.log(JSON.stringify(state)) return state } |