Update btcnet import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 17:23:38 -06:00
parent 578e615994
commit 5bdb50ece6
4 changed files with 8 additions and 8 deletions

View file

@ -29,7 +29,7 @@ import (
"log" "log"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcnet" "github.com/btcsuite/btcnet"
) )
var testnet = flag.Bool("testnet", false, "operate on the testnet Bitcoin network") var testnet = flag.Bool("testnet", false, "operate on the testnet Bitcoin network")
@ -60,20 +60,20 @@ func main() {
## Documentation ## Documentation
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)] [![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 Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site 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 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 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 ## Installation
```bash ```bash
$ go get github.com/conformal/btcnet $ go get github.com/btcsuite/btcnet
``` ```
## GPG Verification Key ## GPG Verification Key

2
doc.go
View file

@ -28,7 +28,7 @@
// "log" // "log"
// //
// "github.com/btcsuite/btcutil" // "github.com/btcsuite/btcutil"
// "github.com/conformal/btcnet" // "github.com/btcsuite/btcnet"
// ) // )
// //
// var testnet = flag.Bool("testnet", false, "operate on the testnet Bitcoin network") // var testnet = flag.Bool("testnet", false, "operate on the testnet Bitcoin network")

View file

@ -8,7 +8,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/conformal/btcnet" "github.com/btcsuite/btcnet"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )

View file

@ -5,7 +5,7 @@ import (
"reflect" "reflect"
"testing" "testing"
. "github.com/conformal/btcnet" . "github.com/btcsuite/btcnet"
) )
// Define some of the required parameters for a user-registered // Define some of the required parameters for a user-registered