diff --git a/src/getting-started.md b/src/getting-started.md index ca1253e..b478f23 100644 --- a/src/getting-started.md +++ b/src/getting-started.md @@ -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 # replace the result of nproc here ``` + Edit the `bitcoin.conf` file by adding: ```bash testnet=1 @@ -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). \ No newline at end of file +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).