diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-05-23 05:14:13 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-05-23 05:14:13 +0800 |
commit | 954d8bd111ea70b823267b89edb415e2d28caec3 (patch) | |
tree | 91a18f7ce17f18e756c1f82ff352d68fce327aea /ui/app | |
parent | 0ef9e8b7094374b44d7a3bed6730d9d6815a17ec (diff) | |
download | tangerine-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/app')
-rw-r--r-- | ui/app/components/transaction-list-item.js | 2 |
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 ( |