1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Remove unneeded toString conversions.

This commit is contained in:
Kevin Serrano 2017-10-25 11:36:12 -07:00
parent e1b9734cbf
commit dee172fb3a
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1

View File

@ -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',