aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-05-23 05:14:13 +0800
committerDan Finlay <dan@danfinlay.com>2017-05-23 05:14:13 +0800
commit954d8bd111ea70b823267b89edb415e2d28caec3 (patch)
tree91a18f7ce17f18e756c1f82ff352d68fce327aea /ui
parent0ef9e8b7094374b44d7a3bed6730d9d6815a17ec (diff)
downloadtangerine-wallet-browser-954d8bd111ea70b823267b89edb415e2d28caec3.tar
tangerine-wallet-browser-954d8bd111ea70b823267b89edb415e2d28caec3.tar.gz
tangerine-wallet-browser-954d8bd111ea70b823267b89edb415e2d28caec3.tar.bz2
tangerine-wallet-browser-954d8bd111ea70b823267b89edb415e2d28caec3.tar.lz
tangerine-wallet-browser-954d8bd111ea70b823267b89edb415e2d28caec3.tar.xz
tangerine-wallet-browser-954d8bd111ea70b823267b89edb415e2d28caec3.tar.zst
tangerine-wallet-browser-954d8bd111ea70b823267b89edb415e2d28caec3.zip
Render txs with no nonce
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/transaction-list-item.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js
index e0612c7bf..4f0e6132a 100644
--- a/ui/app/components/transaction-list-item.js
+++ b/ui/app/components/transaction-list-item.js
@@ -40,7 +40,7 @@ TransactionListItem.prototype.render = function () {
txParams = transaction.msgParams
}
- const nonce = (new BN(txParams.nonce.substr(2))).toString(10)
+ const nonce = txParams.nonce ? (new BN(txParams.nonce.substr(2))).toString(10) : ''
const isClickable = ('hash' in transaction && isLinkable) || isPending
return (