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:
parent
0ef9e8b709
commit
954d8bd111
@ -40,7 +40,7 @@ TransactionListItem.prototype.render = function () {
|
|||||||
txParams = transaction.msgParams
|
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
|
const isClickable = ('hash' in transaction && isLinkable) || isPending
|
||||||
return (
|
return (
|
||||||
|
Loading…
Reference in New Issue
Block a user