diff --git a/README.md b/README.md index 6ab976d7a2..f5c9d3d40e 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 4fe2047c62..0c13766328 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 fbafe248bf..0ad1f46395 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 2554119655..748445276f 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 351081b691..a467a3bd5b 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 aeb8028420..9eaaafab3c 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 612b1f4b14..30d735e05c 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 ecd993a599..6805a47c6f 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 215c326434..371f084d8a 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 73d612ee3d..1a87bac251 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 3e368ac313..17047aac61 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 56f5dace8d..c1c2526278 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 86dae99b1c..bd5d5539ca 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 e8f5e259b4..03733a2bef 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 6c4ebf9d28..4673e58ff5 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 8c57fcd41f..01e994937e 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 cc2060e3e5..c7912355be 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 ae608e99e0..4b8cd4d193 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 3a5a08c924..64e23317b2 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 ffb12d9ed7..5d77af07a1 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 98a05876e8..5dd14e9ed4 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 79db0c1fd1..b886a38dd4 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 fd99e53beb..5d1f6cff42 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 e369492ac5..ff9bebf492 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 36c715a4cf..eefcba80a9 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 b5d616c5de..f018d9a84d 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 7f1bced124..f4b431e5c8 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 c364923912..e683eb01ac 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 05d112c76d..e8e25b8478 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 5a0172a530..cc527d2ec9 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.