added clientVersion

This commit is contained in:
cubedro 2015-03-20 08:36:52 +02:00
parent d294eee990
commit 9f6a78ca9d
1 changed files with 4 additions and 2 deletions

View File

@ -37,6 +37,10 @@ function Node()
{
var self = this;
web3.setProvider(new web3.providers.HttpProvider('http://' + (process.env.RPC_HOST || 'localhost') + ':' + (process.env.RPC_PORT || '8080')));
ETH_VERSION = web3.version;
this.info = {
name: INSTANCE_NAME || (process.env.EC2_INSTANCE_ID || os.hostname()),
node: 'unknown',
@ -76,8 +80,6 @@ function Node()
this.chainWatch = false;
this.updateInterval = false;
web3.setProvider(new web3.providers.HttpProvider('http://' + (process.env.RPC_HOST || 'localhost') + ':' + (process.env.RPC_PORT || '8080')));
socket.on('open', function open() {
socket.emit('hello', { id: self.id, info: self.info, secret: WS_SECRET });
console.log('The connection has been opened.');