|
|
@ -32,7 +32,7 @@ PTXP.render = function () { |
|
|
|
var gasMultiplier = txData.gasMultiplier |
|
|
|
var gasMultiplier = txData.gasMultiplier |
|
|
|
var gasCost = new BN(ethUtil.stripHexPrefix(txParams.gas || txData.estimatedGas), 16) |
|
|
|
var gasCost = new BN(ethUtil.stripHexPrefix(txParams.gas || txData.estimatedGas), 16) |
|
|
|
var gasPrice = new BN(ethUtil.stripHexPrefix(txParams.gasPrice || '0x4a817c800'), 16) |
|
|
|
var gasPrice = new BN(ethUtil.stripHexPrefix(txParams.gasPrice || '0x4a817c800'), 16) |
|
|
|
gasPrice = gasPrice.mul(new BN(gasMultiplier * 100)).div(new BN(100, 10)) |
|
|
|
gasPrice = gasPrice.mul(new BN(gasMultiplier * 100), 10).div(new BN(100, 10)) |
|
|
|
var txFee = gasCost.mul(gasPrice) |
|
|
|
var txFee = gasCost.mul(gasPrice) |
|
|
|
var txValue = new BN(ethUtil.stripHexPrefix(txParams.value || '0x0'), 16) |
|
|
|
var txValue = new BN(ethUtil.stripHexPrefix(txParams.value || '0x0'), 16) |
|
|
|
var maxCost = txValue.add(txFee) |
|
|
|
var maxCost = txValue.add(txFee) |
|
|
|