From f4e426c69f7515c6a7a48a725fc41bbd87edf898 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 01:21:57 -0600 Subject: [PATCH] Update go-socks import paths to new location. --- config.go | 2 +- peer.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 8b85ae48..9e958f80 100644 --- a/config.go +++ b/config.go @@ -18,11 +18,11 @@ import ( "github.com/btcsuite/btcutil" flags "github.com/btcsuite/go-flags" + "github.com/btcsuite/go-socks/socks" "github.com/conformal/btcdb" _ "github.com/conformal/btcdb/ldb" _ "github.com/conformal/btcdb/memdb" "github.com/conformal/btcwire" - socks "github.com/conformal/go-socks" ) const ( diff --git a/peer.go b/peer.go index b384d886..f7bf13c0 100644 --- a/peer.go +++ b/peer.go @@ -18,11 +18,11 @@ import ( "github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil/bloom" + "github.com/btcsuite/go-socks/socks" "github.com/conformal/btcchain" "github.com/conformal/btcd/addrmgr" "github.com/conformal/btcdb" "github.com/conformal/btcwire" - socks "github.com/conformal/go-socks" "github.com/davecgh/go-spew/spew" )