fix "config" vs "options" vs "opts" bug

This commit is contained in:
Ryan X. Charles 2014-04-17 15:17:33 -03:00
parent 2f6c5ac181
commit 9f278cf848
1 changed files with 2 additions and 2 deletions

View File

@ -31,9 +31,9 @@ function Connection(socket, peer, opts) {
this.peer = peer;
// check for socks5 proxy options and construct a proxied socket
if (this.options.proxy) {
if (this.config.proxy) {
var Socks5Client = imports.Socks5Client || require('socks5-client');
this.socket = new Socks5Client(config.proxy.host, config.proxy.port);
this.socket = new Socks5Client(this.config.proxy.host, this.config.proxy.port);
}
// A connection is considered "active" once we have received verack