improved miner name requests

This commit is contained in:
cubedro 2015-04-07 19:49:49 +03:00
parent 645912a086
commit bb1d54c4ac
1 changed files with 5 additions and 0 deletions

View File

@ -321,6 +321,11 @@ Node.prototype.getMinerName = function(miner)
this._knownMiners.push({miner: miner, name: name});
return name;
}
else
{
this._knownMiners.push({miner: miner, name: false});
return false;
}
}
return false;