Skip to content

Commit

Permalink
Update README.md (decred#1162)
Browse files Browse the repository at this point in the history
Remove section: Using existing dcrd and dcrwallet daemons
  • Loading branch information
hudovisk authored and alexlyp committed Feb 12, 2018
1 parent 782fc71 commit 3a8bbbd
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,33 +99,6 @@ The first time you run with testnet, you may get a "Failed to connect wallet by
"network": "testnet",
```

### Using existing dcrd and dcrwallet daemons

During development it may be useful to run the `dcrd` and `dcrwallet` daemons separately from decrediton (to speed up start up time or to test with different versions of the back-ends).

To do that, change the following directives on your config.json file:

```bash
"daemon_skip_start": true,
"wallet_skip_start": true,
```

This will prevent decrediton from starting the daemons. You can then start them manually:

```bash
dcrd --testnet -u USER -P PASSWORD --rpclisten=127.0.0.1:19119 --rpccert=$HOME/.dcrd/rpc.cert

dcrwallet --testnet --rpcconnect=127.0.0.1:19119 --grpclisten=127.0.0.1:19121 --noinitialload --tlscurve=P-256 --onetimetlskey --appdata=~/.config/decrediton
```

Or on MacOS:

```bash
dcrd --testnet -u USER -P PASSWORD --rpclisten=127.0.0.1:19119 --rpccert=$HOME/Library/Application\ Support/Dcrd/rpc.cert

dcrwallet --testnet --rpcconnect=127.0.0.1:19119 --grpclisten=127.0.0.1:19121 --noinitialload --tlscurve=P-256 --onetimetlskey --appdata=$HOME/Library/Application\ Support/decrediton
```

### Windows

On windows you will need some extra steps to build grpc. This assumes
Expand Down

0 comments on commit 3a8bbbd

Please sign in to comment.