Skip to content

Commit

Permalink
fix nproc
Browse files Browse the repository at this point in the history
  • Loading branch information
plebhash committed Apr 5, 2024
1 parent c2f1b05 commit e865b77
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,15 @@ git clone https://github.com/Sjors/bitcoin.git
cd bitcoin
git checkout sv2
```
Next, compile the template provider:
Next, compile the template provider. You can accelerate the process by using multiple cores.

```bash
make clean
./autogen.sh && ./configure
make -j 10
./autogen.sh && ./configure
nproc # find out how many cores are available on your CPU
make -j <nproc> # replace the result of nproc here
```

Edit the `bitcoin.conf` file by adding:
```bash
testnet=1
Expand Down Expand Up @@ -206,4 +208,4 @@ In case a public key is required, as explained in the config files, you can star

## Community support

If you get any issue during testing phase, feel free to [join our community Discord](https://discord.gg/fsEW23wFYs) to get community support or file a [bug report on GitHub](https://github.com/stratum-mining/stratum/issues/new).
If you get any issue during testing phase, feel free to [join our community Discord](https://discord.gg/fsEW23wFYs) to get community support or file a [bug report on GitHub](https://github.com/stratum-mining/stratum/issues/new).

0 comments on commit e865b77

Please sign in to comment.