Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit ba37ff8

Browse files
authored
Merge pull request #664 from erkarl/add-readme-bitcoind
Update README with bitcoind setup
2 parents 7b0337c + 5ecdb84 commit ba37ff8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ To run the packaged version of the app e.g. for macOS run:
6161

6262
### Starting the Packaged App (full node)
6363

64+
#### btcd
6465
Start btcd in a seperate terminal session and wait until it's fully synced (can take over a day)
6566
```
6667
btcd --testnet --txindex --rpcuser=kek --rpcpass=kek
@@ -71,6 +72,16 @@ To run the packaged version of the app e.g. for macOS run:
7172
./dist/mac/Lightning.app/Contents/MacOS/Lightning --btcd.rpcuser=kek --btcd.rpcpass=kek
7273
```
7374

75+
#### bitcoind
76+
Start bitcoind in a seperate terminal session and wait until it's fully synced (can take over a day)
77+
```
78+
bitcoind -testnet -txindex=1 -rpcuser=kek -rpcpassword=kek -rpcbind=localhost -zmqpubrawblock=tcp://127.0.0.1:28332 -zmqpubrawtx=tcp://127.0.0.1:28333
79+
```
80+
81+
To run the packaged version of the app e.g. for macOS run:
82+
```
83+
./dist/mac/Lightning.app/Contents/MacOS/Lightning --bitcoin.node=bitcoind --bitcoind.rpcuser=kek --bitcoind.rpcpass=kek --bitcoind.zmqpubrawblock=tcp://127.0.0.1:28332 --bitcoind.zmqpubrawtx=tcp://127.0.0.1:28333
84+
```
7485

7586
### Lnd data and logs
7687
Lnd data and logs are written to the following locations in production:

0 commit comments

Comments
 (0)