aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-12-21 02:35:41 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-12-21 09:37:18 +0800
commit5fe3c5aae6756f225edd0f8646ac0a23c264a81c (patch)
tree9eaac0fb78f24b63f0175c5d374390c2f454cd7b /ui/app/components/pending-tx
parentbf4043c59bb67ea93599207d91cb7a4f4426e75f (diff)
downloadtangerine-wallet-browser-5fe3c5aae6756f225edd0f8646ac0a23c264a81c.tar.gz
tangerine-wallet-browser-5fe3c5aae6756f225edd0f8646ac0a23c264a81c.tar.zst
tangerine-wallet-browser-5fe3c5aae6756f225edd0f8646ac0a23c264a81c.zip
Lint fixes.
Diffstat (limited to 'ui/app/components/pending-tx')
-rw-r--r--ui/app/components/pending-tx/confirm-send-token.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-token.js b/ui/app/components/pending-tx/confirm-send-token.js
index a07835911..aa4f29fb0 100644
--- a/ui/app/components/pending-tx/confirm-send-token.js
+++ b/ui/app/components/pending-tx/confirm-send-token.js
@@ -2,7 +2,6 @@ const Component = require('react').Component
const { connect } = require('react-redux')
const h = require('react-hyperscript')
const inherits = require('util').inherits
-const ethAbi = require('ethereumjs-abi')
const tokenAbi = require('human-standard-token-abi')
const abiDecoder = require('abi-decoder')
abiDecoder.addABI(tokenAbi)
@@ -415,7 +414,7 @@ ConfirmSendToken.prototype.onSubmit = function (event) {
ConfirmSendToken.prototype.cancel = function (event, txMeta) {
event.preventDefault()
- const { send, cancelTransaction } = this.props
+ const { cancelTransaction } = this.props
cancelTransaction(txMeta)
}