Skip to content

Commit

Permalink
Update btcwire import paths to new location.
Browse files Browse the repository at this point in the history
  • Loading branch information
davecgh committed Jan 16, 2015
1 parent 2c19238 commit d3e2947
Show file tree
Hide file tree
Showing 30 changed files with 33 additions and 33 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion blockheader_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"testing"
"time"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion common_test.go
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion fakemessage_test.go
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion invvect_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion message_test.go
Expand Up @@ -13,7 +13,7 @@ import (
"testing"
"time"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgaddr_test.go
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgalert_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgblock_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgfilteradd_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
)

// TestFilterAddLatest tests the MsgFilterAdd API against the latest protocol
Expand Down
2 changes: 1 addition & 1 deletion msgfilterclear_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgfilterload_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
)

// TestFilterCLearLatest tests the MsgFilterLoad API against the latest protocol
Expand Down
2 changes: 1 addition & 1 deletion msggetaddr_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msggetblocks_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msggetdata_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msggetheaders_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgheaders_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msginv_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgmempool_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"bytes"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
)

func TestMemPool(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion msgmerkleblock_test.go
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgnotfound_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgping_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgpong_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgreject_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgtx_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgverack_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"reflect"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion msgversion_test.go
Expand Up @@ -13,7 +13,7 @@ import (
"testing"
"time"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion netaddress_test.go
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion protocol_test.go
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion shahash_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"encoding/hex"
"testing"

"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
)

// TestShaHash tests the ShaHash API.
Expand Down

0 comments on commit d3e2947

Please sign in to comment.