aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-msg.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-06-25 08:27:42 +0800
committerkumavis <aaron@kumavis.me>2016-06-25 08:27:42 +0800
commit770528d5380b9e30742130d986d196c192b2ac09 (patch)
tree0195a4f3d058dc046f776035e3a42cb6ad097b90 /ui/app/components/pending-msg.js
parentd7d440b2c22eb29744dbd59d6a0d83c27e60c9bd (diff)
downloadtangerine-wallet-browser-770528d5380b9e30742130d986d196c192b2ac09.tar.gz
tangerine-wallet-browser-770528d5380b9e30742130d986d196c192b2ac09.tar.zst
tangerine-wallet-browser-770528d5380b9e30742130d986d196c192b2ac09.zip
clean - appease the linting machine
Diffstat (limited to 'ui/app/components/pending-msg.js')
-rw-r--r--ui/app/components/pending-msg.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/app/components/pending-msg.js b/ui/app/components/pending-msg.js
index a45b828b7..f4bde91dc 100644
--- a/ui/app/components/pending-msg.js
+++ b/ui/app/components/pending-msg.js
@@ -14,11 +14,6 @@ PendingMsg.prototype.render = function () {
var state = this.props
var msgData = state.txData
- var msgParams = msgData.msgParams || {}
- var address = msgParams.from || state.selectedAddress
- var identity = state.identities[address] || { address: address }
- var account = state.accounts[address] || { address: address }
-
return (
h('div', {
@@ -46,7 +41,7 @@ PendingMsg.prototype.render = function () {
}, 'Sign'),
]),
])
-
+
)
}