fix callback param

pull/3094/head
yann300 7 years ago
parent 61f2fa20a6
commit 9373c77f67
  1. 2
      src/app/execution/confirmDialog.js

@ -20,7 +20,7 @@ var css = csjs`
function confirmDialog (tx, amount, gasEstimation, self, newGasPriceCb, initialParamsCb) {
var onGasPriceChange = function () {
var gasPrice = el.querySelector('#gasprice').value
newGasPriceCb(gasPrice, (priceStatus, txFeeText) => {
newGasPriceCb(gasPrice, (txFeeText, priceStatus) => {
el.querySelector('#txfee').innerHTML = txFeeText
el.gasPriceStatus = priceStatus
})

Loading…
Cancel
Save