Commit ca823136 authored by yann300's avatar yann300

fix call result

parent 55c41393
......@@ -779,7 +779,16 @@ UniversalDApp.prototype.rawRunTx = function (args, cb) {
}
if (args.useCall) {
tx.gas = gasLimit
self.web3.eth.call(tx, cb)
var callhash = self.web3.sha3(JSON.stringify(tx))
self.web3.eth.call(tx, function (error, result) {
if (error) {
return cb(error)
}
cb(null, {
result: result,
transactionHash: callhash
})
})
} else {
self.web3.eth.estimateGas(tx, function (err, resp) {
if (err) {
......
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