added clientVersion
This commit is contained in:
parent
d294eee990
commit
9f6a78ca9d
@ -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.');
|
||||
|
Loading…
Reference in New Issue
Block a user