mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
getHexGasTotal and increaseLastGasPrice now gracefully handle null and undefined values
This commit is contained in:
parent
8108eac705
commit
0346089caa
@ -13,7 +13,7 @@ import {
|
||||
import { unconfirmedTransactionsCountSelector } from '../../selectors/confirm-transaction'
|
||||
|
||||
export function increaseLastGasPrice (lastGasPrice) {
|
||||
return ethUtil.addHexPrefix(multiplyCurrencies(lastGasPrice, 1.1, {
|
||||
return ethUtil.addHexPrefix(multiplyCurrencies(lastGasPrice || '0x0', 1.1, {
|
||||
multiplicandBase: 16,
|
||||
multiplierBase: 10,
|
||||
toNumericBase: 'hex',
|
||||
@ -28,7 +28,7 @@ export function hexGreaterThan (a, b) {
|
||||
}
|
||||
|
||||
export function getHexGasTotal ({ gasLimit, gasPrice }) {
|
||||
return ethUtil.addHexPrefix(multiplyCurrencies(gasLimit, gasPrice, {
|
||||
return ethUtil.addHexPrefix(multiplyCurrencies(gasLimit || '0x0', gasPrice || '0x0', {
|
||||
toNumericBase: 'hex',
|
||||
multiplicandBase: 16,
|
||||
multiplierBase: 16,
|
||||
|
Loading…
Reference in New Issue
Block a user