Skip to content

Commit

Permalink
Update btcnet 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 578e615 commit 5bdb50e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -29,7 +29,7 @@ import (
"log"

"github.com/btcsuite/btcutil"
"github.com/conformal/btcnet"
"github.com/btcsuite/btcnet"
)

var testnet = flag.Bool("testnet", false, "operate on the testnet Bitcoin network")
Expand Down Expand Up @@ -60,20 +60,20 @@ func main() {
## Documentation

[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)]
(http://godoc.org/github.com/conformal/btcnet)
(http://godoc.org/github.com/btcsuite/btcnet)

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/btcnet).
[here](http://godoc.org/github.com/btcsuite/btcnet).

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/btcnet
http://localhost:6060/pkg/github.com/btcsuite/btcnet

## Installation

```bash
$ go get github.com/conformal/btcnet
$ go get github.com/btcsuite/btcnet
```

## GPG Verification Key
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Expand Up @@ -28,7 +28,7 @@
// "log"
//
// "github.com/btcsuite/btcutil"
// "github.com/conformal/btcnet"
// "github.com/btcsuite/btcnet"
// )
//
// var testnet = flag.Bool("testnet", false, "operate on the testnet Bitcoin network")
Expand Down
2 changes: 1 addition & 1 deletion genesis_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"bytes"
"testing"

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

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

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

// Define some of the required parameters for a user-registered
Expand Down

0 comments on commit 5bdb50e

Please sign in to comment.