Merge pull request #112 from cubedro/develop

Changed default eth rpc port to 8545
This commit is contained in:
Marian OANCΞA 2015-05-08 16:24:34 +03:00
commit 0e3701f65e
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ Node.prototype.startWeb3Connection = function()
{
console.info('Starting web3 connection');
web3.setProvider( new web3.providers.HttpProvider('http://' + (process.env.RPC_HOST || 'localhost') + ':' + (process.env.RPC_PORT || '8080')) );
web3.setProvider( new web3.providers.HttpProvider('http://' + (process.env.RPC_HOST || 'localhost') + ':' + (process.env.RPC_PORT || '8545')) );
this.checkWeb3Connection();
}