commit
e25821ef19
16
lib/node.js
16
lib/node.js
@ -376,7 +376,6 @@ Node.prototype.getStats = function()
|
|||||||
|
|
||||||
this.stats.mining = web3.eth.mining;
|
this.stats.mining = web3.eth.mining;
|
||||||
this.stats.gasPrice = web3.toBigNumber(web3.eth.gasPrice).toString(10);
|
this.stats.gasPrice = web3.toBigNumber(web3.eth.gasPrice).toString(10);
|
||||||
this.stats.listening = web3.net.listening;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.uptime();
|
this.uptime();
|
||||||
@ -419,6 +418,19 @@ Node.prototype.update = function()
|
|||||||
return this.stats;
|
return this.stats;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Node.prototype.updatePending = function()
|
||||||
|
{
|
||||||
|
if(PENDING_WORKS) {
|
||||||
|
try {
|
||||||
|
this.stats.pending = web3.eth.getBlockTransactionCount('pending');
|
||||||
|
this.sendUpdate();
|
||||||
|
} catch (err) {
|
||||||
|
PENDING_WORKS = false;
|
||||||
|
console.error("getBlockTransactionCount('pending'):", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Node.prototype.ping = function()
|
Node.prototype.ping = function()
|
||||||
{
|
{
|
||||||
this._latency = (new Date()).getTime();
|
this._latency = (new Date()).getTime();
|
||||||
@ -433,7 +445,7 @@ Node.prototype.setWatches = function()
|
|||||||
this.pendingFilter.watch( function(log) {
|
this.pendingFilter.watch( function(log) {
|
||||||
if(PENDING_WORKS) {
|
if(PENDING_WORKS) {
|
||||||
debounce(function() {
|
debounce(function() {
|
||||||
self.update();
|
self.updatePending();
|
||||||
}, 50);
|
}, 50);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user