Commit b4a512dd authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #338 from ethereum/fixCall2

Fix call result
parents 55c41393 ca823136
...@@ -779,7 +779,16 @@ UniversalDApp.prototype.rawRunTx = function (args, cb) { ...@@ -779,7 +779,16 @@ UniversalDApp.prototype.rawRunTx = function (args, cb) {
} }
if (args.useCall) { if (args.useCall) {
tx.gas = gasLimit 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 { } else {
self.web3.eth.estimateGas(tx, function (err, resp) { self.web3.eth.estimateGas(tx, function (err, resp) {
if (err) { 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