From 8c27eb82ae7d6bc523087a0c339425205d4523e9 Mon Sep 17 00:00:00 2001 From: Andrey Petrov Date: Thu, 29 Jan 2015 16:03:52 -0800 Subject: [PATCH] s/conformal/btcsuite/ --- client.go | 2 +- crawler.go | 2 +- ext_btcd.go | 6 +++--- peer.go | 2 +- seed.go | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client.go b/client.go index 21968d5..9f8d786 100644 --- a/client.go +++ b/client.go @@ -1,7 +1,7 @@ package main import ( - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) type Client struct { diff --git a/crawler.go b/crawler.go index ab9acb5..ce3eee0 100644 --- a/crawler.go +++ b/crawler.go @@ -4,7 +4,7 @@ import ( "sync" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) // TODO: Break Client/Peer/Crawler into separate modules. diff --git a/ext_btcd.go b/ext_btcd.go index fac6262..d2df084 100644 --- a/ext_btcd.go +++ b/ext_btcd.go @@ -1,11 +1,11 @@ -// Things borrowed from https://github.com/conformal/btcd/blob/master/addrmanager.go -// because "github.com/conformal/btcd" wouldn't import for some reason. +// Things borrowed from https://github.com/btcsuite/btcd/blob/master/addrmanager.go +// because "github.com/btcsuite/btcd" wouldn't import for some reason. package main import ( "encoding/base32" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "net" "strconv" "strings" diff --git a/peer.go b/peer.go index 2e00d9b..0fac039 100644 --- a/peer.go +++ b/peer.go @@ -5,7 +5,7 @@ import ( "net" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) type Peer struct { diff --git a/seed.go b/seed.go index b7ce380..bde57f3 100644 --- a/seed.go +++ b/seed.go @@ -4,7 +4,7 @@ import ( "net" "sync" - "github.com/conformal/btcnet" + "github.com/btcsuite/btcnet" ) func GetSeedsFromDNS(dnsSeeds []string) []string {