From 23cb64026a600829b4cf189dc44b77f657390d61 Mon Sep 17 00:00:00 2001 From: viktor Date: Fri, 3 Nov 2017 21:20:51 +0300 Subject: [PATCH] Tests fix --- jsTests/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsTests/utils.js b/jsTests/utils.js index 84e30bf..c20fac3 100644 --- a/jsTests/utils.js +++ b/jsTests/utils.js @@ -163,7 +163,7 @@ function buyFromWizard(addr, tokens) { function buyFromBridge(addr) { attachToContract("left", function(err, contract, web3) { - web3.eth.sendTransaction({from: web3.eth.defaultAccount, value: 1000000000000000, from: addr, to: db.home_contract_address}).then(function(err, result) { + web3.eth.sendTransaction({value: 1000000000000000, from: addr, to: db.home_contract_address}).then(function(err, result) { console.log("buy from left:"); if (err) console.log(err); console.log("result: " + result);