fix call result

pull/1/head
yann300 8 years ago
parent 55c41393c2
commit ca82313631
  1. 11
      src/universal-dapp.js

@ -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) {

Loading…
Cancel
Save