Commit b0a75cbb authored by Alex Beregszaszi's avatar Alex Beregszaszi

Require web3.js 0.18.0

parent eff37385
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
"solc": "https://github.com/ethereum/solc-js", "solc": "https://github.com/ethereum/solc-js",
"standard": "^8.5.0", "standard": "^8.5.0",
"tape": "^4.5.1", "tape": "^4.5.1",
"web3": "https://github.com/ethereum/web3.js#35bcace7173fda742ddb1bba84c8a70f0fa849e0", "web3": "^0.18.0",
"webworkify": "^1.2.1", "webworkify": "^1.2.1",
"yo-yo": "^1.2.2", "yo-yo": "^1.2.2",
"yo-yoify": "^3.3.0" "yo-yoify": "^3.3.0"
......
...@@ -76,7 +76,7 @@ TxRunner.prototype.execute = function () { ...@@ -76,7 +76,7 @@ TxRunner.prototype.execute = function () {
tx.gas = resp tx.gas = resp
var sendTransaction = self.personalMode ? self.web3.personal.unlockAccountAndSendTransaction : self.web3.eth.sendTransaction var sendTransaction = self.personalMode ? self.web3.personal.sendTransaction : self.web3.eth.sendTransaction
sendTransaction(tx, function (err, resp) { sendTransaction(tx, function (err, resp) {
if (err) { if (err) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment