fix tryTillResponse

pull/1/head
yann300 7 years ago
parent 7013ed1e38
commit 075d03ef90
  1. 4
      src/app/execution/txRunner.js

@ -191,8 +191,8 @@ TxRunner.prototype.execute = function (args, callback) {
function tryTillResponse (txhash, done) { function tryTillResponse (txhash, done) {
executionContext.web3().eth.getTransactionReceipt(txhash, function (err, result) { executionContext.web3().eth.getTransactionReceipt(txhash, function (err, result) {
if (!err && !result) { if (err || !result) {
// Try again with a bit of delay // Try again with a bit of delay if error or if result still null
setTimeout(function () { tryTillResponse(txhash, done) }, 500) setTimeout(function () { tryTillResponse(txhash, done) }, 500)
} else { } else {
done(err, { done(err, {

Loading…
Cancel
Save