Merge pull request #130 from cubedro/develop

Fixed 0x0000... coinbase miner name
This commit is contained in:
Marian OANCΞA 2015-05-18 18:33:47 +03:00
commit 5375a35c44
3 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -127,7 +127,7 @@ netStatsApp.controller('StatsCtrl', function($scope, $filter, socket, _, toastr)
var index = findIndex({id: data.id});
if(typeof $scope.nodes[index].stats !== 'undefined') {
if($scope.nodes[index].stats.block.number < data.stats.block.number)
{
var best = _.max($scope.nodes, function(node) {
@ -251,6 +251,9 @@ netStatsApp.controller('StatsCtrl', function($scope, $filter, socket, _, toastr)
if(value.name !== false)
return;
if(value.miner === "0x0000000000000000000000000000000000000000")
return;
var name = _.result(_.find(_.pluck($scope.nodes, 'info'), 'coinbase', value.miner), 'name');
if(typeof name !== 'undefined')