mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Gas and Gaslimit revert to default if set to 0
This commit is contained in:
parent
9fb4b4a77f
commit
576cc9eb75
@ -35,6 +35,8 @@ PTXP.render = function () {
|
|||||||
|
|
||||||
const gas = state.gas || txParams.gas
|
const gas = state.gas || txParams.gas
|
||||||
const gasPrice = state.gasPrice || txData.gasPrice
|
const gasPrice = state.gasPrice || txData.gasPrice
|
||||||
|
const gasDefault = gas
|
||||||
|
const gasPriceDefault = gasPrice
|
||||||
|
|
||||||
var txFee = state.txFee || txData.txFee || ''
|
var txFee = state.txFee || txData.txFee || ''
|
||||||
var maxCost = state.maxCost || txData.maxCost || ''
|
var maxCost = state.maxCost || txData.maxCost || ''
|
||||||
@ -130,7 +132,11 @@ PTXP.render = function () {
|
|||||||
},
|
},
|
||||||
onChange: (newHex) => {
|
onChange: (newHex) => {
|
||||||
log.info(`Gas limit changed to ${newHex}`)
|
log.info(`Gas limit changed to ${newHex}`)
|
||||||
this.setState({ gas: newHex })
|
if (newHex === '0x0') {
|
||||||
|
this.setState({gas: gasDefault})
|
||||||
|
} else {
|
||||||
|
this.setState({ gas: newHex })
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
@ -150,7 +156,11 @@ PTXP.render = function () {
|
|||||||
},
|
},
|
||||||
onChange: (newHex) => {
|
onChange: (newHex) => {
|
||||||
log.info(`Gas price changed to: ${newHex}`)
|
log.info(`Gas price changed to: ${newHex}`)
|
||||||
this.setState({ gasPrice: newHex })
|
if (newHex === '0x0') {
|
||||||
|
this.setState({gasPrice: gasPriceDefault})
|
||||||
|
} else {
|
||||||
|
this.setState({ gasPrice: newHex })
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user