BitcoinPrivate-legacy/fork-instructions.md

36 lines
749 B
Markdown
Raw Permalink Normal View History

2018-03-02 20:54:31 -08:00
2018-03-02 21:04:09 -08:00
# Instructions to set up a BitcoinPrivate full-node to Mine the Fork
2018-03-02 16:48:52 -08:00
Linux ONLY, 500GB+ recommended
2018-03-02 20:54:31 -08:00
2018-03-02 21:04:09 -08:00
*You will not receive a mining reward if you choose to help mine the fork*
2018-03-02 20:54:09 -08:00
**Bitcoin Private**
2018-03-02 20:55:01 -08:00
2018-03-02 16:48:52 -08:00
March 2, 2018
2018-03-02 20:54:31 -08:00
2018-03-02 20:55:01 -08:00
#
2018-03-02 16:02:43 -08:00
2018-03-02 20:54:09 -08:00
**Install Bitcoin Private**
2018-03-02 16:02:43 -08:00
2018-03-02 16:48:52 -08:00
Follow the instructions [here](https://github.com/BTCPrivate/BitcoinPrivate/blob/master/README.md).
2018-03-02 16:02:43 -08:00
2018-03-02 20:54:09 -08:00
**Download + Decompress Snapshot Data (BTC UTXOs)**
2018-03-02 16:36:58 -08:00
```
2018-03-02 16:40:04 -08:00
cd ~/.btcprivate/
2018-03-02 16:02:43 -08:00
curl https://s3.amazonaws.com/btcp.snapshot/utxo_snapshot.tar.gz | tar xvz
2018-03-02 16:36:58 -08:00
```
2018-03-02 16:48:52 -08:00
2018-03-02 16:56:11 -08:00
You can also generate the utxo_snapshot yourself [here](https://github.com/BTCPrivate/utxo_dump).
2018-03-02 20:54:09 -08:00
**Make the config file**
2018-03-02 16:42:39 -08:00
```
mkdir ~/.btcprivate
touch ~/.btcprivate/btcprivate.conf
```
2018-03-02 16:02:43 -08:00
2018-03-02 20:54:09 -08:00
**Run the daemon**
2018-03-02 16:36:58 -08:00
```
2018-03-02 16:02:43 -08:00
cd ~/BitcoinPrivate
./src/btcpd
2018-03-02 16:36:58 -08:00
```