Update btcd import paths to new location.

This commit is contained in:
Dave Collins 2015-01-17 01:03:11 -06:00
parent f05ab25696
commit ac94b3f331

View file

@ -19,7 +19,7 @@ client is required to provide a wallet encryption passphrase.
btcwallet is not an SPV client and requires connecting to a local or btcwallet is not an SPV client and requires connecting to a local or
remote btcd instance for asynchronous blockchain queries and remote btcd instance for asynchronous blockchain queries and
notifications over websockets. Full btcd installation instructions notifications over websockets. Full btcd installation instructions
can be found [here](https://github.com/conformal/btcd). can be found [here](https://github.com/btcsuite/btcd).
As a daemon, btcwallet provides no user interface and an additional As a daemon, btcwallet provides no user interface and an additional
graphical or command line client is required for normal, personal graphical or command line client is required for normal, personal
@ -47,7 +47,7 @@ https://opensource.conformal.com/packages/windows/btcdsuite/
- Run the following commands to obtain and install btcwallet and all - Run the following commands to obtain and install btcwallet and all
dependencies: dependencies:
```bash ```bash
$ go get -u -v github.com/conformal/btcd/... $ go get -u -v github.com/btcsuite/btcd/...
$ go get -u -v github.com/btcsuite/btcwallet/... $ go get -u -v github.com/btcsuite/btcwallet/...
``` ```
@ -68,7 +68,7 @@ https://opensource.conformal.com/packages/windows/btcdsuite/
- Run the following commands to update btcwallet, all dependencies, and install it: - Run the following commands to update btcwallet, all dependencies, and install it:
```bash ```bash
$ go get -u -v github.com/conformal/btcd/... $ go get -u -v github.com/btcsuite/btcd/...
$ go get -u -v github.com/btcsuite/btcwallet/... $ go get -u -v github.com/btcsuite/btcwallet/...
``` ```
@ -102,7 +102,7 @@ copy the sample btcd and btcwallet configurations and update with your
RPC username and password. RPC username and password.
```bash ```bash
$ cp $GOPATH/src/github.com/conformal/btcd/sample-btcd.conf ~/.btcd/btcd.conf $ cp $GOPATH/src/github.com/btcsuite/btcd/sample-btcd.conf ~/.btcd/btcd.conf
$ cp $GOPATH/src/github.com/btcsuite/btcwallet/sample-btcwallet.conf ~/.btcwallet/btcwallet.conf $ cp $GOPATH/src/github.com/btcsuite/btcwallet/sample-btcwallet.conf ~/.btcwallet/btcwallet.conf
$ $EDITOR ~/.btcd/btcd.conf $ $EDITOR ~/.btcd/btcd.conf
$ $EDITOR ~/.btcwallet/btcwallet.conf $ $EDITOR ~/.btcwallet/btcwallet.conf