aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-06-25 08:22:27 +0800
committerkumavis <aaron@kumavis.me>2016-06-25 08:22:27 +0800
commitd7d440b2c22eb29744dbd59d6a0d83c27e60c9bd (patch)
treeacb5391bc84adac60e3aa27e8b916808eceff469 /ui/app/components/pending-tx.js
parent86fdcca2ec810c7a002ec984f267920da0a85f9a (diff)
downloadtangerine-wallet-browser-d7d440b2c22eb29744dbd59d6a0d83c27e60c9bd.tar.gz
tangerine-wallet-browser-d7d440b2c22eb29744dbd59d6a0d83c27e60c9bd.tar.zst
tangerine-wallet-browser-d7d440b2c22eb29744dbd59d6a0d83c27e60c9bd.zip
svg notif now work for msg signatures
Diffstat (limited to 'ui/app/components/pending-tx.js')
-rw-r--r--ui/app/components/pending-tx.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index f889877c9..cc76cc697 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -1,12 +1,8 @@
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
-
-const AccountPanel = require('./account-panel')
const PendingTxDetails = require('./pending-tx-details')
-const addressSummary = require('../util').addressSummary
-const readableDate = require('../util').readableDate
-const formatBalance = require('../util').formatBalance
+
module.exports = PendingTx
@@ -17,10 +13,6 @@ function PendingTx () {
PendingTx.prototype.render = function () {
var state = this.props
- return this.renderGeneric(h, state)
-}
-
-PendingTx.prototype.renderGeneric = function (h, state) {
var txData = state.txData
var txParams = txData.txParams || {}