diff options
Diffstat (limited to 'lib/autoprovider.js')
-rw-r--r-- | lib/autoprovider.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/autoprovider.js b/lib/autoprovider.js index bfbc3ab6e..2f0a3e627 100644 --- a/lib/autoprovider.js +++ b/lib/autoprovider.js @@ -27,12 +27,11 @@ * if it fails, it uses HttpRpcProvider */ -// TODO: work out which of the following two lines it is supposed to be... -//if (process.env.NODE_ENV !== 'build') { -if ("build" !== 'build') {/* +// TODO: is these line is supposed to be here? +if (process.env.NODE_ENV !== 'build') { var WebSocket = require('ws'); // jshint ignore:line var web3 = require('./main.js'); // jshint ignore:line -*/} +} var AutoProvider = function (userOptions) { if (web3.haveProvider()) { |