fixed nodes stats class

This commit is contained in:
cubedro 2015-07-30 11:52:19 +03:00
parent 790c335c5b
commit f0b178ac40
1 changed files with 4 additions and 4 deletions

View File

@ -522,19 +522,19 @@ angular.module('netStatsApp.filters', [])
})
.filter('consensusClass', function() {
return function(nodes, bestBlock) {
var status = 'success';
var status = 'text-success';
var now = (new Date()).getTime();
for(var x = 0; x < nodes.length; x++)
{
if(nodes[x].stats.block.number === bestBlock.block.number && nodes[x].stats.block.hash !== bestBlock.block.hash)
return 'danger';
return 'text-danger';
if((bestBlock.block.number - nodes[x].stats.block.number) > 1 && (now - bestBlock.block.received) >= 20*1000)
status = 'orange';
status = 'text-orange';
if((bestBlock.block.number - nodes[x].stats.block.number) === 1 && (now - bestBlock.block.received) >= 10*1000 && status !== 'orange')
status = 'warning';
status = 'text-warning';
}
return status;