Revert to providing inline defaults in getHexGasTotal and increaseLastGasPrice (#6361)

feature/default_network_editable
Dan J Miller 6 years ago committed by Whymarrh Whitby
parent 19c2b298f1
commit 1d14646a4c
  1. 8
      ui/app/helpers/utils/confirm-tx.util.js

@ -12,8 +12,8 @@ import {
import { unconfirmedTransactionsCountSelector } from '../../selectors/confirm-transaction' import { unconfirmedTransactionsCountSelector } from '../../selectors/confirm-transaction'
export function increaseLastGasPrice (lastGasPrice = '0x0') { export function increaseLastGasPrice (lastGasPrice) {
return ethUtil.addHexPrefix(multiplyCurrencies(lastGasPrice, 1.1, { return ethUtil.addHexPrefix(multiplyCurrencies(lastGasPrice || '0x0', 1.1, {
multiplicandBase: 16, multiplicandBase: 16,
multiplierBase: 10, multiplierBase: 10,
toNumericBase: 'hex', toNumericBase: 'hex',
@ -27,8 +27,8 @@ export function hexGreaterThan (a, b) {
) )
} }
export function getHexGasTotal ({ gasLimit = '0x0', gasPrice = '0x0' }) { export function getHexGasTotal ({ gasLimit, gasPrice }) {
return ethUtil.addHexPrefix(multiplyCurrencies(gasLimit, gasPrice, { return ethUtil.addHexPrefix(multiplyCurrencies(gasLimit || '0x0', gasPrice || '0x0', {
toNumericBase: 'hex', toNumericBase: 'hex',
multiplicandBase: 16, multiplicandBase: 16,
multiplierBase: 16, multiplierBase: 16,

Loading…
Cancel
Save