aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-03-01 06:12:07 +0800
committerDan Finlay <dan@danfinlay.com>2017-03-01 06:13:58 +0800
commite07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d (patch)
treedb87b350cde5aef119a79a1195c677cc50ece2b4
parent157dd994f09219311522e37343939451c711eb7e (diff)
downloadtangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar.gz
tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar.zst
tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.zip
Linted
-rw-r--r--app/scripts/lib/id-management.js1
-rw-r--r--ui/app/components/pending-tx-details.js4
-rw-r--r--ui/app/send.js2
3 files changed, 2 insertions, 5 deletions
diff --git a/app/scripts/lib/id-management.js b/app/scripts/lib/id-management.js
index 30631d479..90b3fdb13 100644
--- a/app/scripts/lib/id-management.js
+++ b/app/scripts/lib/id-management.js
@@ -7,7 +7,6 @@
*/
const ethUtil = require('ethereumjs-util')
-const BN = ethUtil.BN
const Transaction = require('ethereumjs-tx')
module.exports = IdManagement
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js
index 892ef4ad6..9a8f202be 100644
--- a/ui/app/components/pending-tx-details.js
+++ b/ui/app/components/pending-tx-details.js
@@ -116,8 +116,8 @@ PTXP.render = function () {
selected: advanced,
onChange: () => {
this.setState({advanced: !advanced})
- }
- })
+ },
+ }),
]),
// Ether Value
diff --git a/ui/app/send.js b/ui/app/send.js
index 752eed15a..581e3afa0 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -10,8 +10,6 @@ const addressSummary = require('./util').addressSummary
const isHex = require('./util').isHex
const EthBalance = require('./components/eth-balance')
const ethUtil = require('ethereumjs-util')
-const RangeSlider = require('./components/range-slider')
-const Tooltip = require('./components/tooltip')
module.exports = connect(mapStateToProps)(SendTransactionScreen)
function mapStateToProps (state) {