aboutsummaryrefslogtreecommitdiffstats
path: root/RPCTests/modules/ethconsole.js
diff options
context:
space:
mode:
authorDimitry <dimitry@ethdev.com>2017-03-08 19:11:16 +0800
committerDimitry <dimitry@ethdev.com>2017-03-08 19:11:16 +0800
commit8fc7755279f7aa53352d659a80dc7128615a2a42 (patch)
treeaf480a5b084dee5cae21d46c81ac834186397ad1 /RPCTests/modules/ethconsole.js
parent0e7c51bb0a4755a2bebe11c72a579a962b3c205b (diff)
downloadtangerine-tests-8fc7755279f7aa53352d659a80dc7128615a2a42.tar
tangerine-tests-8fc7755279f7aa53352d659a80dc7128615a2a42.tar.gz
tangerine-tests-8fc7755279f7aa53352d659a80dc7128615a2a42.tar.bz2
tangerine-tests-8fc7755279f7aa53352d659a80dc7128615a2a42.tar.lz
tangerine-tests-8fc7755279f7aa53352d659a80dc7128615a2a42.tar.xz
tangerine-tests-8fc7755279f7aa53352d659a80dc7128615a2a42.tar.zst
tangerine-tests-8fc7755279f7aa53352d659a80dc7128615a2a42.zip
use npm install to download web3 dependencies
Diffstat (limited to 'RPCTests/modules/ethconsole.js')
-rw-r--r--RPCTests/modules/ethconsole.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/RPCTests/modules/ethconsole.js b/RPCTests/modules/ethconsole.js
index d3ee707bb..de6cae5af 100644
--- a/RPCTests/modules/ethconsole.js
+++ b/RPCTests/modules/ethconsole.js
@@ -52,8 +52,8 @@ runScriptOnNode: function runScriptOnNode(dataDir, jsScript, args, finished)
var utils = require('./utils.js');
var ipcPath = dataDir + '/geth.ipc';
- var Web3 = require('./ethereum-console/node_modules/web3');
- var web3admin = require('./ethereum-console/web3Admin.js');
+ var Web3 = require('web3');
+ var web3admin = require('./web3Admin.js');
var net = require('net');
utils.cLog("Connecting to node at " + ipcPath);