From d3e2947c059d3ac6c7e33d9547e4d2f9cbd6c71c Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 13:54:11 -0600 Subject: [PATCH] Update btcwire import paths to new location. --- README.md | 8 ++++---- blockheader_test.go | 2 +- common_test.go | 2 +- fakemessage_test.go | 2 +- invvect_test.go | 2 +- message_test.go | 2 +- msgaddr_test.go | 2 +- msgalert_test.go | 2 +- msgblock_test.go | 2 +- msgfilteradd_test.go | 2 +- msgfilterclear_test.go | 2 +- msgfilterload_test.go | 2 +- msggetaddr_test.go | 2 +- msggetblocks_test.go | 2 +- msggetdata_test.go | 2 +- msggetheaders_test.go | 2 +- msgheaders_test.go | 2 +- msginv_test.go | 2 +- msgmempool_test.go | 2 +- msgmerkleblock_test.go | 2 +- msgnotfound_test.go | 2 +- msgping_test.go | 2 +- msgpong_test.go | 2 +- msgreject_test.go | 2 +- msgtx_test.go | 2 +- msgverack_test.go | 2 +- msgversion_test.go | 2 +- netaddress_test.go | 2 +- protocol_test.go | 2 +- shahash_test.go | 2 +- 30 files changed, 33 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index 6ab976d7..f5c9d3d4 100644 --- a/README.md +++ b/README.md @@ -23,20 +23,20 @@ interface with bitcoin peers at the wire protocol level. ## Documentation [![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)] -(http://godoc.org/github.com/conformal/btcwire) +(http://godoc.org/github.com/btcsuite/btcwire) Full `go doc` style documentation for the project can be viewed online without installing this package by using the GoDoc site here: -http://godoc.org/github.com/conformal/btcwire +http://godoc.org/github.com/btcsuite/btcwire You can also view the documentation locally once the package is installed with the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to -http://localhost:6060/pkg/github.com/conformal/btcwire +http://localhost:6060/pkg/github.com/btcsuite/btcwire ## Installation ```bash -$ go get github.com/conformal/btcwire +$ go get github.com/btcsuite/btcwire ``` ## Bitcoin Message Overview diff --git a/blockheader_test.go b/blockheader_test.go index 4fe2047c..0c137663 100644 --- a/blockheader_test.go +++ b/blockheader_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/common_test.go b/common_test.go index fbafe248..0ad1f463 100644 --- a/common_test.go +++ b/common_test.go @@ -12,7 +12,7 @@ import ( "strings" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/fakemessage_test.go b/fakemessage_test.go index 25541196..74844527 100644 --- a/fakemessage_test.go +++ b/fakemessage_test.go @@ -7,7 +7,7 @@ package btcwire_test import ( "io" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) // fakeMessage implements the btcwire.Message interface and is used to force diff --git a/invvect_test.go b/invvect_test.go index 351081b6..a467a3bd 100644 --- a/invvect_test.go +++ b/invvect_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/message_test.go b/message_test.go index aeb80284..9eaaafab 100644 --- a/message_test.go +++ b/message_test.go @@ -13,7 +13,7 @@ import ( "testing" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgaddr_test.go b/msgaddr_test.go index 612b1f4b..30d735e0 100644 --- a/msgaddr_test.go +++ b/msgaddr_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgalert_test.go b/msgalert_test.go index ecd993a5..6805a47c 100644 --- a/msgalert_test.go +++ b/msgalert_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgblock_test.go b/msgblock_test.go index 215c3264..371f084d 100644 --- a/msgblock_test.go +++ b/msgblock_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgfilteradd_test.go b/msgfilteradd_test.go index 73d612ee..1a87bac2 100644 --- a/msgfilteradd_test.go +++ b/msgfilteradd_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) // TestFilterAddLatest tests the MsgFilterAdd API against the latest protocol diff --git a/msgfilterclear_test.go b/msgfilterclear_test.go index 3e368ac3..17047aac 100644 --- a/msgfilterclear_test.go +++ b/msgfilterclear_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgfilterload_test.go b/msgfilterload_test.go index 56f5dace..c1c25262 100644 --- a/msgfilterload_test.go +++ b/msgfilterload_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) // TestFilterCLearLatest tests the MsgFilterLoad API against the latest protocol diff --git a/msggetaddr_test.go b/msggetaddr_test.go index 86dae99b..bd5d5539 100644 --- a/msggetaddr_test.go +++ b/msggetaddr_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msggetblocks_test.go b/msggetblocks_test.go index e8f5e259..03733a2b 100644 --- a/msggetblocks_test.go +++ b/msggetblocks_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msggetdata_test.go b/msggetdata_test.go index 6c4ebf9d..4673e58f 100644 --- a/msggetdata_test.go +++ b/msggetdata_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msggetheaders_test.go b/msggetheaders_test.go index 8c57fcd4..01e99493 100644 --- a/msggetheaders_test.go +++ b/msggetheaders_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgheaders_test.go b/msgheaders_test.go index cc2060e3..c7912355 100644 --- a/msgheaders_test.go +++ b/msgheaders_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msginv_test.go b/msginv_test.go index ae608e99..4b8cd4d1 100644 --- a/msginv_test.go +++ b/msginv_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgmempool_test.go b/msgmempool_test.go index 3a5a08c9..64e23317 100644 --- a/msgmempool_test.go +++ b/msgmempool_test.go @@ -8,7 +8,7 @@ import ( "bytes" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) func TestMemPool(t *testing.T) { diff --git a/msgmerkleblock_test.go b/msgmerkleblock_test.go index ffb12d9e..5d77af07 100644 --- a/msgmerkleblock_test.go +++ b/msgmerkleblock_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgnotfound_test.go b/msgnotfound_test.go index 98a05876..5dd14e9e 100644 --- a/msgnotfound_test.go +++ b/msgnotfound_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgping_test.go b/msgping_test.go index 79db0c1f..b886a38d 100644 --- a/msgping_test.go +++ b/msgping_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgpong_test.go b/msgpong_test.go index fd99e53b..5d1f6cff 100644 --- a/msgpong_test.go +++ b/msgpong_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgreject_test.go b/msgreject_test.go index e369492a..ff9bebf4 100644 --- a/msgreject_test.go +++ b/msgreject_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgtx_test.go b/msgtx_test.go index 36c715a4..eefcba80 100644 --- a/msgtx_test.go +++ b/msgtx_test.go @@ -11,7 +11,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgverack_test.go b/msgverack_test.go index b5d616c5..f018d9a8 100644 --- a/msgverack_test.go +++ b/msgverack_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/msgversion_test.go b/msgversion_test.go index 7f1bced1..f4b431e5 100644 --- a/msgversion_test.go +++ b/msgversion_test.go @@ -13,7 +13,7 @@ import ( "testing" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/netaddress_test.go b/netaddress_test.go index c3649239..e683eb01 100644 --- a/netaddress_test.go +++ b/netaddress_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" "github.com/davecgh/go-spew/spew" ) diff --git a/protocol_test.go b/protocol_test.go index 05d112c7..e8e25b84 100644 --- a/protocol_test.go +++ b/protocol_test.go @@ -7,7 +7,7 @@ package btcwire_test import ( "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) // TestServiceFlagStringer tests the stringized output for service flag types. diff --git a/shahash_test.go b/shahash_test.go index 5a0172a5..cc527d2e 100644 --- a/shahash_test.go +++ b/shahash_test.go @@ -9,7 +9,7 @@ import ( "encoding/hex" "testing" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) // TestShaHash tests the ShaHash API.