diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-05-23 06:43:20 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-05-23 06:43:20 +0800 |
commit | 058b73221393467549cca04937267635e471aae1 (patch) | |
tree | 85ba257b6caa6bbdb02b84c3417bed4a8f120a22 | |
parent | 954d8bd111ea70b823267b89edb415e2d28caec3 (diff) | |
download | tangerine-wallet-browser-058b73221393467549cca04937267635e471aae1.tar tangerine-wallet-browser-058b73221393467549cca04937267635e471aae1.tar.gz tangerine-wallet-browser-058b73221393467549cca04937267635e471aae1.tar.bz2 tangerine-wallet-browser-058b73221393467549cca04937267635e471aae1.tar.lz tangerine-wallet-browser-058b73221393467549cca04937267635e471aae1.tar.xz tangerine-wallet-browser-058b73221393467549cca04937267635e471aae1.tar.zst tangerine-wallet-browser-058b73221393467549cca04937267635e471aae1.zip |
Tolerate nonces of any format
-rw-r--r-- | package.json | 1 | ||||
-rw-r--r-- | ui/app/components/transaction-list-item.js | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json index 14ddd2886..6fb9513d5 100644 --- a/package.json +++ b/package.json @@ -87,6 +87,7 @@ "mississippi": "^1.2.0", "mkdirp": "^0.5.1", "multiplex": "^6.7.0", + "number-to-bn": "^1.7.0", "obs-store": "^2.3.1", "once": "^1.3.3", "ping-pong-stream": "^1.0.0", diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index 4f0e6132a..dbda66a31 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -8,7 +8,7 @@ const explorerLink = require('../../lib/explorer-link') const CopyButton = require('./copyButton') const vreme = new (require('vreme')) const Tooltip = require('./tooltip') -const BN = require('ethereumjs-util').BN +const numberToBN = require('number-to-bn') const TransactionIcon = require('./transaction-list-item-icon') const ShiftListItem = require('./shift-list-item') @@ -40,7 +40,7 @@ TransactionListItem.prototype.render = function () { txParams = transaction.msgParams } - const nonce = txParams.nonce ? (new BN(txParams.nonce.substr(2))).toString(10) : '' + const nonce = txParams.nonce ? numberToBN(txParams.nonce).toString(10) : '' const isClickable = ('hash' in transaction && isLinkable) || isPending return ( |