aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2017-02-28 05:53:43 +0800
committerKevin Serrano <kevgagser@gmail.com>2017-02-28 05:53:43 +0800
commita77a5f0ab329433404893ff1280fb90ff2a12029 (patch)
tree364217139a952fd3f53ea37c5f24218ea34c53cb /ui/app/components/pending-tx.js
parentc46f3d59de1201e800e7cee22a593d26dfb575bd (diff)
downloadtangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar
tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.gz
tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.bz2
tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.lz
tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.xz
tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.zst
tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.zip
Move input boxes into table and into details component.
Diffstat (limited to 'ui/app/components/pending-tx.js')
-rw-r--r--ui/app/components/pending-tx.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index f1f479794..23b0dc00f 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -2,7 +2,6 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const PendingTxDetails = require('./pending-tx-details')
-const HexInput = require('./hex-as-decimal-input')
module.exports = PendingTx
@@ -78,21 +77,6 @@ PendingTx.prototype.render = function () {
onClick: props.cancelTransaction,
}, 'Reject'),
]),
-
- h(HexInput, {
- value: gas,
- onChange: (newHex) => {
- this.setState({ gas: newHex })
- },
- }),
-
- h(HexInput, {
- value: gasPrice,
- onChange: (newHex) => {
- this.setState({ gasPrice: newHex })
- },
- }),
-
])
)
}