pull/1/head
yann300 8 years ago
parent 20d8b428e8
commit 23d216fd33
  1. 7
      src/universal-dapp.js

@ -669,13 +669,14 @@ UniversalDApp.prototype.clickContractAt = function (self, $output, contract) {
}
function tryTillResponse (web3, txhash, done) {
web3.eth.getTransactionReceipt(txhash, function (err, address) {
if (!err && !address) {
web3.eth.getTransactionReceipt(txhash, function (err, result) {
if (!err && !result) {
// Try again with a bit of delay
setTimeout(function () { tryTillResponse(web3, txhash, done) }, 500)
} else {
done(err, {
result: address
result: result,
transactionHash: result.transactionHash
})
}
})

Loading…
Cancel
Save