diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-10-26 02:36:12 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-10-26 02:36:12 +0800 |
commit | dee172fb3a3fd0442ff94d1afc0bc0c4c2a81ae5 (patch) | |
tree | 2e633d832c6156825aee939dc29685d8389d64de /ui/app/components | |
parent | e1b9734cbfdf032a21ce75ac8f480f6ba4668bd2 (diff) | |
download | tangerine-wallet-browser-dee172fb3a3fd0442ff94d1afc0bc0c4c2a81ae5.tar.gz tangerine-wallet-browser-dee172fb3a3fd0442ff94d1afc0bc0c4c2a81ae5.tar.zst tangerine-wallet-browser-dee172fb3a3fd0442ff94d1afc0bc0c4c2a81ae5.zip |
Remove unneeded toString conversions.
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/pending-tx.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index c4f215d19..7d907ca18 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -175,7 +175,7 @@ PendingTx.prototype.render = function () { precision: 0, scale: 0, // The hard lower limit for gas. - min: MIN_GAS_LIMIT_BN.toString(10), + min: MIN_GAS_LIMIT_BN, max: safeGasLimit, suffix: 'UNITS', style: { @@ -200,7 +200,7 @@ PendingTx.prototype.render = function () { precision: 9, scale: 9, suffix: 'GWEI', - min: MIN_GAS_PRICE_BN.toString(10), + min: MIN_GAS_PRICE_BN, style: { position: 'relative', top: '5px', |