Merge pull request #347 from gordonwritescode/bug/peerdiscovery-network-ref

fix #346
This commit is contained in:
Ryan X. Charles 2014-05-16 02:50:48 -04:00
commit e8d10c3045
1 changed files with 3 additions and 3 deletions

View File

@ -275,7 +275,7 @@ PeerManager.prototype.discover = function(options, callback) {
// transform that list into a list of Peer instances
peers = peers.map(function(ip) {
return new Peer(ip, networks.defaultClientPort);
return new Peer(ip, networks[self.config.network].defaultClientPort);
});
peers.forEach(function(p) {