diff --git a/README.md b/README.md index 6ab976d7a..f5c9d3d40 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 4fe2047c6..0c1376632 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 fbafe248b..0ad1f4639 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 255411965..748445276 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 351081b69..a467a3bd5 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 aeb802842..9eaaafab3 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 612b1f4b1..30d735e05 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 ecd993a59..6805a47c6 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 215c32643..371f084d8 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 73d612ee3..1a87bac25 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 3e368ac31..17047aac6 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 56f5dace8..c1c252627 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 86dae99b1..bd5d5539c 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 e8f5e259b..03733a2be 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 6c4ebf9d2..4673e58ff 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 8c57fcd41..01e994937 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 cc2060e3e..c7912355b 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 ae608e99e..4b8cd4d19 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 3a5a08c92..64e23317b 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 ffb12d9ed..5d77af07a 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 98a05876e..5dd14e9ed 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 79db0c1fd..b886a38dd 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 fd99e53be..5d1f6cff4 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 e369492ac..ff9bebf49 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 36c715a4c..eefcba80a 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 b5d616c5d..f018d9a84 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 7f1bced12..f4b431e5c 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 c36492391..e683eb01a 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 05d112c76..e8e25b847 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 5a0172a53..cc527d2ec 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.