Update btcd import paths to new location.
This commit is contained in:
parent
f05ab25696
commit
ac94b3f331
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue