fix callback params

pull/1/head
Iuri Matias 7 years ago
parent 29242bc1c9
commit 9892114b83
  1. 2
      src/app/execution/txRunner.js

@ -165,7 +165,7 @@ TxRunner.prototype.runInNode = function (from, to, data, value, gasLimit, useCal
txFeeText = ' Please fix this issue before sending any transaction. ' + e.message
priceStatus = false
}
cb(txFeeText, priceStatus)
cb(priceStatus, txFeeText)
},
(cb) => {
executionContext.web3().eth.getGasPrice((error, gasPrice) => {

Loading…
Cancel
Save