Commit 9892114b authored by Iuri Matias's avatar Iuri Matias

fix callback params

parent 29242bc1
...@@ -165,7 +165,7 @@ TxRunner.prototype.runInNode = function (from, to, data, value, gasLimit, useCal ...@@ -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 txFeeText = ' Please fix this issue before sending any transaction. ' + e.message
priceStatus = false priceStatus = false
} }
cb(txFeeText, priceStatus) cb(priceStatus, txFeeText)
}, },
(cb) => { (cb) => {
executionContext.web3().eth.getGasPrice((error, gasPrice) => { executionContext.web3().eth.getGasPrice((error, gasPrice) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment