|
|
|
@ -204,8 +204,8 @@ TxRunner.prototype.runInNode = function (from, to, data, value, gasLimit, useCal |
|
|
|
|
|
|
|
|
|
function tryTillResponse (txhash, done) { |
|
|
|
|
executionContext.web3().eth.getTransactionReceipt(txhash, function (err, result) { |
|
|
|
|
if (!err && !result) { |
|
|
|
|
// Try again with a bit of delay
|
|
|
|
|
if (err || !result) { |
|
|
|
|
// Try again with a bit of delay if error or if result still null
|
|
|
|
|
setTimeout(function () { tryTillResponse(txhash, done) }, 500) |
|
|
|
|
} else { |
|
|
|
|
done(err, { |
|
|
|
|