1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Render txs with no nonce

This commit is contained in:
Dan Finlay 2017-05-22 14:14:13 -07:00
parent 0ef9e8b709
commit 954d8bd111

View File

@ -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 (