Update btcd import paths to new location.
This commit is contained in:
parent
7c4217cd54
commit
f9f4d37976
8 changed files with 14 additions and 14 deletions
14
README.md
14
README.md
|
@ -1,8 +1,8 @@
|
||||||
btcd
|
btcd
|
||||||
====
|
====
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/conformal/btcd.png?branch=master)]
|
[![Build Status](https://travis-ci.org/btcsuite/btcd.png?branch=master)]
|
||||||
(https://travis-ci.org/conformal/btcd)
|
(https://travis-ci.org/btcsuite/btcd)
|
||||||
|
|
||||||
btcd is an alternative full node bitcoin implementation written in Go (golang).
|
btcd is an alternative full node bitcoin implementation written in Go (golang).
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ active development.
|
||||||
|
|
||||||
#### Windows - MSI Available
|
#### Windows - MSI Available
|
||||||
|
|
||||||
https://github.com/conformal/btcd/releases
|
https://github.com/btcsuite/btcd/releases
|
||||||
|
|
||||||
#### Linux/BSD/POSIX - Build from Source
|
#### Linux/BSD/POSIX - Build from Source
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ https://github.com/conformal/btcd/releases
|
||||||
http://golang.org/doc/install
|
http://golang.org/doc/install
|
||||||
|
|
||||||
- Run the following command to obtain btcd, all dependencies, and install it:
|
- Run the following command to obtain btcd, all dependencies, and install it:
|
||||||
```$ go get github.com/conformal/btcd/...```
|
```$ go get github.com/btcsuite/btcd/...```
|
||||||
|
|
||||||
- btcd (and utilities) will now be installed in either ```$GOROOT/bin``` or
|
- btcd (and utilities) will now be installed in either ```$GOROOT/bin``` or
|
||||||
```$GOPATH/bin``` depending on your configuration. If you did not already
|
```$GOPATH/bin``` depending on your configuration. If you did not already
|
||||||
|
@ -65,7 +65,7 @@ Install a newer MSI
|
||||||
#### Linux/BSD/POSIX - Build from Source
|
#### Linux/BSD/POSIX - Build from Source
|
||||||
|
|
||||||
- Run the following command to update btcd, all dependencies, and install it:
|
- Run the following command to update btcd, all dependencies, and install it:
|
||||||
```$ go get -u -v github.com/conformal/btcd/...```
|
```$ go get -u -v github.com/btcsuite/btcd/...```
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
@ -98,12 +98,12 @@ To subscribe to a given list, send email to list+subscribe@opensource.conformal.
|
||||||
|
|
||||||
## Issue Tracker
|
## Issue Tracker
|
||||||
|
|
||||||
The [integrated github issue tracker](https://github.com/conformal/btcd/issues)
|
The [integrated github issue tracker](https://github.com/btcsuite/btcd/issues)
|
||||||
is used for this project.
|
is used for this project.
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
The documentation is a work-in-progress. It uses the [github wiki](https://github.com/conformal/btcd/wiki) facility.
|
The documentation is a work-in-progress. It uses the [github wiki](https://github.com/btcsuite/btcd/wiki) facility.
|
||||||
|
|
||||||
## GPG Verification Key
|
## GPG Verification Key
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,8 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/btcsuite/btcd/addrmgr"
|
||||||
"github.com/btcsuite/btcwire"
|
"github.com/btcsuite/btcwire"
|
||||||
"github.com/conformal/btcd/addrmgr"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// naTest is used to describe a test to be perfomed against the NetAddressKey
|
// naTest is used to describe a test to be perfomed against the NetAddressKey
|
||||||
|
|
|
@ -9,8 +9,8 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/btcsuite/btcd/addrmgr"
|
||||||
"github.com/btcsuite/btcwire"
|
"github.com/btcsuite/btcwire"
|
||||||
"github.com/conformal/btcd/addrmgr"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// TestIPTypes ensures the various functions which determine the type of an IP
|
// TestIPTypes ensures the various functions which determine the type of an IP
|
||||||
|
|
2
btcd.go
2
btcd.go
|
@ -13,7 +13,7 @@ import (
|
||||||
"runtime"
|
"runtime"
|
||||||
"runtime/pprof"
|
"runtime/pprof"
|
||||||
|
|
||||||
"github.com/conformal/btcd/limits"
|
"github.com/btcsuite/btcd/limits"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
2
log.go
2
log.go
|
@ -10,7 +10,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/conformal/btcd/addrmgr"
|
"github.com/btcsuite/btcd/addrmgr"
|
||||||
|
|
||||||
"github.com/btcsuite/btcchain"
|
"github.com/btcsuite/btcchain"
|
||||||
"github.com/btcsuite/btcdb"
|
"github.com/btcsuite/btcdb"
|
||||||
|
|
2
peer.go
2
peer.go
|
@ -17,12 +17,12 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/btcsuite/btcchain"
|
"github.com/btcsuite/btcchain"
|
||||||
|
"github.com/btcsuite/btcd/addrmgr"
|
||||||
"github.com/btcsuite/btcdb"
|
"github.com/btcsuite/btcdb"
|
||||||
"github.com/btcsuite/btcutil"
|
"github.com/btcsuite/btcutil"
|
||||||
"github.com/btcsuite/btcutil/bloom"
|
"github.com/btcsuite/btcutil/bloom"
|
||||||
"github.com/btcsuite/btcwire"
|
"github.com/btcsuite/btcwire"
|
||||||
"github.com/btcsuite/go-socks/socks"
|
"github.com/btcsuite/go-socks/socks"
|
||||||
"github.com/conformal/btcd/addrmgr"
|
|
||||||
"github.com/davecgh/go-spew/spew"
|
"github.com/davecgh/go-spew/spew"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -20,11 +20,11 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/btcsuite/btcchain"
|
"github.com/btcsuite/btcchain"
|
||||||
|
"github.com/btcsuite/btcd/addrmgr"
|
||||||
"github.com/btcsuite/btcdb"
|
"github.com/btcsuite/btcdb"
|
||||||
"github.com/btcsuite/btcjson"
|
"github.com/btcsuite/btcjson"
|
||||||
"github.com/btcsuite/btcnet"
|
"github.com/btcsuite/btcnet"
|
||||||
"github.com/btcsuite/btcwire"
|
"github.com/btcsuite/btcwire"
|
||||||
"github.com/conformal/btcd/addrmgr"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -10,10 +10,10 @@ import (
|
||||||
"runtime"
|
"runtime"
|
||||||
|
|
||||||
"github.com/btcsuite/btcchain"
|
"github.com/btcsuite/btcchain"
|
||||||
|
"github.com/btcsuite/btcd/limits"
|
||||||
"github.com/btcsuite/btcdb"
|
"github.com/btcsuite/btcdb"
|
||||||
_ "github.com/btcsuite/btcdb/ldb"
|
_ "github.com/btcsuite/btcdb/ldb"
|
||||||
"github.com/btcsuite/btclog"
|
"github.com/btcsuite/btclog"
|
||||||
"github.com/conformal/btcd/limits"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
Loading…
Reference in a new issue