mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Remove unneeded toString conversions.
This commit is contained in:
parent
e1b9734cbf
commit
dee172fb3a
@ -175,7 +175,7 @@ PendingTx.prototype.render = function () {
|
|||||||
precision: 0,
|
precision: 0,
|
||||||
scale: 0,
|
scale: 0,
|
||||||
// The hard lower limit for gas.
|
// The hard lower limit for gas.
|
||||||
min: MIN_GAS_LIMIT_BN.toString(10),
|
min: MIN_GAS_LIMIT_BN,
|
||||||
max: safeGasLimit,
|
max: safeGasLimit,
|
||||||
suffix: 'UNITS',
|
suffix: 'UNITS',
|
||||||
style: {
|
style: {
|
||||||
@ -200,7 +200,7 @@ PendingTx.prototype.render = function () {
|
|||||||
precision: 9,
|
precision: 9,
|
||||||
scale: 9,
|
scale: 9,
|
||||||
suffix: 'GWEI',
|
suffix: 'GWEI',
|
||||||
min: MIN_GAS_PRICE_BN.toString(10),
|
min: MIN_GAS_PRICE_BN,
|
||||||
style: {
|
style: {
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
top: '5px',
|
top: '5px',
|
||||||
|
Loading…
Reference in New Issue
Block a user