From 376bc259121a41a8b4e329866b97a760e03f2a57 Mon Sep 17 00:00:00 2001 From: Kagami Hiiragi Date: Thu, 5 Feb 2015 23:04:06 +0300 Subject: [PATCH] this bugfix --- lib/net/tcp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/net/tcp.js b/lib/net/tcp.js index eea2e51..054cff1 100644 --- a/lib/net/tcp.js +++ b/lib/net/tcp.js @@ -129,8 +129,8 @@ Transport.prototype.listen = function() { }); var transport = new self.constructor({ client: sock, - seeds: this.seeds, - dnsSeeds: this.dnsSeeds, + seeds: self.seeds, + dnsSeeds: self.dnsSeeds, }); self.emit("connection", transport); });