fix web3 according to the safari fix

pull/1/head
yann300 8 years ago
parent cb9cdb9748
commit 4db9d6cdd1
  1. 4
      src/universal-dapp.js

@ -674,7 +674,9 @@ function tryTillResponse (web3, txhash, done) {
// Try again with a bit of delay
setTimeout(function () { tryTillResponse(web3, txhash, done) }, 500)
} else {
done(err, address)
done(err, {
result: address
})
}
})
}

Loading…
Cancel
Save