aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx.js
diff options
context:
space:
mode:
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 })
- },
- }),
-
])
)
}