Merge pull request #62 from cubedro/develop

Improved miner name requests
This commit is contained in:
Marian OANCΞA 2015-04-07 19:50:15 +03:00
commit c22099b417
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;