diff --git a/_i18n/en/resources/user-guides/mine-to-pool.md b/_i18n/en/resources/user-guides/mine-to-pool.md index 3d5abd8924e56c1c85e67e0198ea1ba96629743a..7434126e04b6d6b9dc1877d1fa0c16f3740ad899 100644 --- a/_i18n/en/resources/user-guides/mine-to-pool.md +++ b/_i18n/en/resources/user-guides/mine-to-pool.md @@ -1,94 +1,94 @@ -{% assign version = '1.1.0' | split: '.' %} +{% assign version = '2.1.0' | split: '.' %} {% include disclaimer.html translated="true" version=page.version %} -# Selecting a pool +# Introduction and what you will need -There are many pools to choose from, a list is available at -[moneropools.com](https://moneropools.com). Mining on a larger pool could mean -more frequent payouts, but mining on a smaller pool helps to keep the network -decentralized. +To mine Monero, you need a pool, a Monero address, a computer, and a miner program. If you don't have a Monero wallet address yet, go to [this page](https://getmonero.org/downloads/) and download a wallet application, which will give you a wallet address. If you are trying to mine on a passivley cooled device (anything without a fan, ie. phones and some laptops), be aware that your device could dangerously overheat, causing slowdowns and at worst cause damage. If your computer contains a CPU or GPU from before 2010, it is unlikley you will be able to mine at a reasonable rate with that CPU or GPU due to outdated hardware. -# Selecting a CPU miner +## Selecting a miner -Just like pools, there are a lot of miners to choose from. The one that you -should pick depends on the hardware you want to mine on. This guide will only -use a CPU miner, and will be using -[xmr-stak-cpu](https://github.com/fireice-uk/xmr-stak-cpu). Alternatives include -[wolf's CPUMiner](https://github.com/wolf9466/cpuminer-multi) and -[sgminer-gm](https://github.com/genesismining/sgminer-gm). However, their -configuration is slightly different and will not be covered in this guide. +There are a lot of miners to choose from. The one that will will be best depends on your hardware, desired features, and if you are okay with using proprietary software. This guide will using the all-in-one +[xmr-stak](https://github.com/fireice-uk/xmr-stak). Alternatives include +[XMRig](https://github.com/xmrig/xmrig), and many more. -## For Windows Systems +The reasons for using xmr-stak is it's web interface, automatic configuration, and it's all in one capability, allowing it to mine on both the general use CPU and dedicated GPU, meaning it will easily work on nearly any machine. + + +## Selecting a pool +There are also many pools to choose from, a list is available at +[moneropools.com](http://www.moneropools.com/). Mining on a larger pool will give more consistent payouts, but mining on a smaller pool helps the Monero network while also being less consistent. This can mean potentially larger or smaller payouts. + +# XMR-Stak Instructions + +## Download for Windows systems If you are using a Windows system, the developer of xmr-stak-cpu provides binaries to download on the -[GitHub release page](https://github.com/fireice-uk/xmr-stak-cpu/releases). +[GitHub release page](https://github.com/fireice-uk/xmr-stak/releases). -Download `xmr-stak-cpu-win64.zip` and extract it somewhere you'll be able to +Download `xmr-stak-win64.zip` and extract it somewhere you'll be able to find it again. -## For Other Operating Systems +## Install for Other Operating Systems + +If you are not using Windows, you may have to compile xmr-stak for yourself, with build instructions [on this page](https://github.com/fireice-uk/xmr-stak/blob/master/doc/compile.md). However if you have access to the Arch User Repository, there is a package for xmr-stak there. + + +## Configuration -If you're not using Windows, you will have to compile xmr-stak-cpu for yourself, -luckily this isn't as hard as it sounds. Before you can compile the miner, you -will need to install some of its prerequisites. +Now that you have the miner ready, simply run the program. If the miner can't find a configuration file, it will promt you to configure it. -For Debian-based distros: +![Config Web Interface](png/mine_to_pool/1.png) +The first prompt will be if you want to enable the web interface. This allows you to see miner statistics from a web browser, including for example, the one on your phone. Standard choices for this option would be ports 8080, 8081, and 80. If you input 0, the web interface will be disabled. To access the web interface (assuming port '8080' was used), go to localhost:8080 on the mining computer while the miner is mining. - sudo apt-get install libmicrohttpd-dev libssl-dev cmake build-essential +![Interface Screenshot](png/mine_to_pool/web.png) +To access the web interface from a different computer, you have to know the IP address of your computer (if accessing from the same network), or the IP address of your internet connection as well as port forwarding your router. -For Red Hat based distros: +![Congig Algorithm](png/mine_to_pool/2.png) +Next, you will be asked what algorithm you want to use. For mining Monero, input Monero. This will select the correct algorithm for what ever version the Monero algorithm is on, as long as your version of XMR-Stak is up to date. - sudo yum install openssl-devel cmake gcc-c++ libmicrohttpd-devel +![Config Pool Address](png/mine_to_pool/3.png) +Next is the pool address and port of the pool you choose earlier. - +![Config Mining Address](png/mine_to_pool/4.png) +Next is your mining address. You get this from your Monero wallet, and is where everyone sends you Monero. If you don't already have a Monero wallet application, get one from [this page](https://getmonero.org/downloads/). -Following this, you just need to use cmake to generate the build files, run -make and copy the config file: +![Config Password](png/mine_to_pool/5.png) +Next you input the password. This is sometimes used as an identifier for your machine, and usually used to configure things like how much you need to mine to get a payout from your pool. - mkdir build-$(gcc -dumpmachine) - cd $_ - cmake ../ - make -j$(nproc) - cp ../config.txt bin/ - cd bin +![Config Misc](png/mine_to_pool/6.png) +The next 4 options can all be given the option of no. The first asks if you want an optional miner identifier, if your pool supports this method. The second option is to use a secure connection, but this isn't needed and if the pool doesn't support SSL it will not even be able to connect if enabled. The third should be input as no unless the pool you are mining to is nicehash. The last option can be used to enter fallback pools, but this isn't needed either. -Don't celebrate just yet, as the miner needs to be configured. Running the miner -now should give you a block of text to copy and paste: +## Running the miner -![image1](png/mine_to_pool/1.png) +After answering the prompts, the miner will run. Next time, the miner will be configured. -Open `config.txt` and *replace* the two `"cpu_threads_conf"` lines with the text -you just copied. It should look something like this afterwards: +![runningminer](png/mine_to_pool/miner.png) -![image2](png/mine_to_pool/2.png) +Now that the miner is running, you can look at its progress on your pool's monitor page, the web interface (if enabled), or pressing the 'h', 'r', or 'c' keys in the miner window. -Scroll down in the file until you see the lines containing `"pool_address"`. -*Replace* the contents of the second set of quotes with the address and port of -the pool you chose earlier. You can find this information on the pool's website. +# Troubleshooting the miner -Put your wallet address between the quotes on the wallet address. You may leave -the password blank unless the pool specifies otherwise. +You might see error messages like this, mentioning AMD or NVidia: -After this, your config should look something like this: + [2018-10-08 19:04:13] : WARNING: No AMD OpenCL platform found. Possible driver issues or wrong vendor driver. -![image3](png/mine_to_pool/3.png) +This means that the miner can't see an AMD Graphics card. There will be a similar error output error mentioning NVidia for NVidia graphics cards. If you don't have any graphics cards in your system, this is expected and can be ignored. -# Running the miner +--- -**Save the config** file and run the miner! +You may see error messages stating your pool address: -![image4](png/mine_to_pool/4.png) + [2018-10-08 19:04:13] : SOCKET ERROR - [gulf.moneroocean.stream:80] CONNECT error: GetAddrInfo: Name or service not known -Some pools allow you to monitor your hashrate by pasting your address into their -website. You can also monitor your hashrate by pressing the `h` key. +This means that the miner can't connect to the pool. Make sure you have input a valid address and mining port. If the address is valid and you are connected to the internet, this means that either the connection is being blocked by a firewall (try changing the port to a firewall friendly port if your pool gives this option, such as 80) or you have been banned from the pool. Since, unless you are using a shared address (ex. mobile data), or have been range banned (as a theoretical example, a pool could ban all ip addresses from a country), it's unlikely you will be banned as soon as connecting. So check your internet connection, firewall, and input IP address. -# Tuning the miner +--- -You might see nasty messages like this: +If you see an error mentioning memory allocation, - [2017-07-09 12:04:02] : MEMORY ALLOC FAILED: mmap failed + [2018-10-08 19:04:13] : MEMORY ALLOC FAILED: mmap failed -This means that you can get around a 20% hashrate boost by enabling large pages. +This means you can get a significant hashrate boost from enable large pages. Follow the instructions below. ## Large pages on Linux @@ -96,13 +96,10 @@ Firstly stop the miner (if it's running), run the following commands to enable large pages and then start the miner as root: sudo sysctl -w vm.nr_hugepages=128 - sudo ./xmr-stak-cpu + sudo ./xmr-stak ## Large pages on Windows -Taken from `config.txt`: - ->By default we will try to allocate large pages. This means you need to "Run As Administrator" on Windows You need to edit your system's group policies to enable locking large pages. Here are the steps from MSDN 1. On the Start menu, click Run. In the Open box, type gpedit.msc. 2. On the Local Group Policy Editor console, expand Computer Configuration, and then expand Windows Settings. @@ -113,3 +110,11 @@ You need to edit your system's group policies to enable locking large pages. Her 7. In the Local Security Setting – Lock pages in memory dialog box, click Add User or Group. 8. In the Select Users, Service Accounts, or Groups dialog box, add an account that you will run the miner on 9. Reboot for change to take effect. + +### Low Hashrate +If you are not getting any other errors, but think you are getting a low hashrate, then check what you should actually be getting. A large list of hashrates for CPUs and CPUs is at [miner.pizza](https://miner.pizza/). + +If you are infact getting a low hashrate, then first check to make sure the computer isn't running other processing heavy tasks using your task manager. +Next, check your processor temperature. If your processor is over 70°C or 80°C, depending on if it's a CPU or GPU, the device may be overheating. In order to protect the computer from damage, it is throlling itself. The overheating may be due to dust or poor thermal design (if you are using a laptop, this is the problem). Clean your computer of dust then try again. + +If neither of these solve the problem, then consider asking the Monero Mining community on [Reddit](https://www.reddit.com/r/MoneroMining/) or [IRC (#monero-pools)](https://kiwiirc.com/client/irc.freenode.net/#monero-pools) for help. \ No newline at end of file diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/1.png b/_i18n/en/resources/user-guides/png/mine_to_pool/1.png index a6e7652877110b793894d9ae627c7466a56b7b0c..0e0703837f1dd3733bc12e654a1318d09cca6bb2 100644 Binary files a/_i18n/en/resources/user-guides/png/mine_to_pool/1.png and b/_i18n/en/resources/user-guides/png/mine_to_pool/1.png differ diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/2.png b/_i18n/en/resources/user-guides/png/mine_to_pool/2.png index 83a7dd163530cfe1a9d5c9c44b4482c7cdb40458..35113ec5910c1851f1746d4681d1d760cda7cb7c 100644 Binary files a/_i18n/en/resources/user-guides/png/mine_to_pool/2.png and b/_i18n/en/resources/user-guides/png/mine_to_pool/2.png differ diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/3.png b/_i18n/en/resources/user-guides/png/mine_to_pool/3.png index 70aeea2aaa91a34285fd0a0162f858a9b0bc76c6..68988ed18c3a46e75785cb97fa6d206b40c1de26 100644 Binary files a/_i18n/en/resources/user-guides/png/mine_to_pool/3.png and b/_i18n/en/resources/user-guides/png/mine_to_pool/3.png differ diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/4.png b/_i18n/en/resources/user-guides/png/mine_to_pool/4.png index 13361a0e85a8b82a374917df939bb97f4529ff32..7f30927371c770586dc4f487b44e17e0e245c8a8 100644 Binary files a/_i18n/en/resources/user-guides/png/mine_to_pool/4.png and b/_i18n/en/resources/user-guides/png/mine_to_pool/4.png differ diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/5.png b/_i18n/en/resources/user-guides/png/mine_to_pool/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9795b32fba4afb0b871d026cabb18a4a79010f16 Binary files /dev/null and b/_i18n/en/resources/user-guides/png/mine_to_pool/5.png differ diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/6.png b/_i18n/en/resources/user-guides/png/mine_to_pool/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d0210df98d16dba243a8e21f69807bcb318c93df Binary files /dev/null and b/_i18n/en/resources/user-guides/png/mine_to_pool/6.png differ diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/miner.png b/_i18n/en/resources/user-guides/png/mine_to_pool/miner.png new file mode 100644 index 0000000000000000000000000000000000000000..aebd80046ea2c2f833fdd9d6f5af3ffe029f0b67 Binary files /dev/null and b/_i18n/en/resources/user-guides/png/mine_to_pool/miner.png differ diff --git a/_i18n/en/resources/user-guides/png/mine_to_pool/web.png b/_i18n/en/resources/user-guides/png/mine_to_pool/web.png new file mode 100644 index 0000000000000000000000000000000000000000..05be27ccbf619806d511203cac3d16e33a9d8113 Binary files /dev/null and b/_i18n/en/resources/user-guides/png/mine_to_pool/web.png differ diff --git a/_i18n/template/resources/user-guides/mine-to-pool.md b/_i18n/template/resources/user-guides/mine-to-pool.md new file mode 100644 index 0000000000000000000000000000000000000000..7434126e04b6d6b9dc1877d1fa0c16f3740ad899 --- /dev/null +++ b/_i18n/template/resources/user-guides/mine-to-pool.md @@ -0,0 +1,120 @@ +{% assign version = '2.1.0' | split: '.' %} +{% include disclaimer.html translated="true" version=page.version %} +# Introduction and what you will need + +To mine Monero, you need a pool, a Monero address, a computer, and a miner program. If you don't have a Monero wallet address yet, go to [this page](https://getmonero.org/downloads/) and download a wallet application, which will give you a wallet address. If you are trying to mine on a passivley cooled device (anything without a fan, ie. phones and some laptops), be aware that your device could dangerously overheat, causing slowdowns and at worst cause damage. If your computer contains a CPU or GPU from before 2010, it is unlikley you will be able to mine at a reasonable rate with that CPU or GPU due to outdated hardware. + +## Selecting a miner + +There are a lot of miners to choose from. The one that will will be best depends on your hardware, desired features, and if you are okay with using proprietary software. This guide will using the all-in-one +[xmr-stak](https://github.com/fireice-uk/xmr-stak). Alternatives include +[XMRig](https://github.com/xmrig/xmrig), and many more. + +The reasons for using xmr-stak is it's web interface, automatic configuration, and it's all in one capability, allowing it to mine on both the general use CPU and dedicated GPU, meaning it will easily work on nearly any machine. + + +## Selecting a pool +There are also many pools to choose from, a list is available at +[moneropools.com](http://www.moneropools.com/). Mining on a larger pool will give more consistent payouts, but mining on a smaller pool helps the Monero network while also being less consistent. This can mean potentially larger or smaller payouts. + +# XMR-Stak Instructions + +## Download for Windows systems + +If you are using a Windows system, the developer of xmr-stak-cpu provides +binaries to download on the +[GitHub release page](https://github.com/fireice-uk/xmr-stak/releases). + +Download `xmr-stak-win64.zip` and extract it somewhere you'll be able to +find it again. + +## Install for Other Operating Systems + +If you are not using Windows, you may have to compile xmr-stak for yourself, with build instructions [on this page](https://github.com/fireice-uk/xmr-stak/blob/master/doc/compile.md). However if you have access to the Arch User Repository, there is a package for xmr-stak there. + + +## Configuration + +Now that you have the miner ready, simply run the program. If the miner can't find a configuration file, it will promt you to configure it. + +![Config Web Interface](png/mine_to_pool/1.png) +The first prompt will be if you want to enable the web interface. This allows you to see miner statistics from a web browser, including for example, the one on your phone. Standard choices for this option would be ports 8080, 8081, and 80. If you input 0, the web interface will be disabled. To access the web interface (assuming port '8080' was used), go to localhost:8080 on the mining computer while the miner is mining. + +![Interface Screenshot](png/mine_to_pool/web.png) +To access the web interface from a different computer, you have to know the IP address of your computer (if accessing from the same network), or the IP address of your internet connection as well as port forwarding your router. + +![Congig Algorithm](png/mine_to_pool/2.png) +Next, you will be asked what algorithm you want to use. For mining Monero, input Monero. This will select the correct algorithm for what ever version the Monero algorithm is on, as long as your version of XMR-Stak is up to date. + +![Config Pool Address](png/mine_to_pool/3.png) +Next is the pool address and port of the pool you choose earlier. + +![Config Mining Address](png/mine_to_pool/4.png) +Next is your mining address. You get this from your Monero wallet, and is where everyone sends you Monero. If you don't already have a Monero wallet application, get one from [this page](https://getmonero.org/downloads/). + +![Config Password](png/mine_to_pool/5.png) +Next you input the password. This is sometimes used as an identifier for your machine, and usually used to configure things like how much you need to mine to get a payout from your pool. + +![Config Misc](png/mine_to_pool/6.png) +The next 4 options can all be given the option of no. The first asks if you want an optional miner identifier, if your pool supports this method. The second option is to use a secure connection, but this isn't needed and if the pool doesn't support SSL it will not even be able to connect if enabled. The third should be input as no unless the pool you are mining to is nicehash. The last option can be used to enter fallback pools, but this isn't needed either. + +## Running the miner + +After answering the prompts, the miner will run. Next time, the miner will be configured. + +![runningminer](png/mine_to_pool/miner.png) + +Now that the miner is running, you can look at its progress on your pool's monitor page, the web interface (if enabled), or pressing the 'h', 'r', or 'c' keys in the miner window. + +# Troubleshooting the miner + +You might see error messages like this, mentioning AMD or NVidia: + + [2018-10-08 19:04:13] : WARNING: No AMD OpenCL platform found. Possible driver issues or wrong vendor driver. + +This means that the miner can't see an AMD Graphics card. There will be a similar error output error mentioning NVidia for NVidia graphics cards. If you don't have any graphics cards in your system, this is expected and can be ignored. + +--- + +You may see error messages stating your pool address: + + [2018-10-08 19:04:13] : SOCKET ERROR - [gulf.moneroocean.stream:80] CONNECT error: GetAddrInfo: Name or service not known + +This means that the miner can't connect to the pool. Make sure you have input a valid address and mining port. If the address is valid and you are connected to the internet, this means that either the connection is being blocked by a firewall (try changing the port to a firewall friendly port if your pool gives this option, such as 80) or you have been banned from the pool. Since, unless you are using a shared address (ex. mobile data), or have been range banned (as a theoretical example, a pool could ban all ip addresses from a country), it's unlikely you will be banned as soon as connecting. So check your internet connection, firewall, and input IP address. + +--- + +If you see an error mentioning memory allocation, + + [2018-10-08 19:04:13] : MEMORY ALLOC FAILED: mmap failed + +This means you can get a significant hashrate boost from enable large pages. Follow the instructions below. + +## Large pages on Linux + +Firstly stop the miner (if it's running), run the following commands to enable +large pages and then start the miner as root: + + sudo sysctl -w vm.nr_hugepages=128 + sudo ./xmr-stak + +## Large pages on Windows + +You need to edit your system's group policies to enable locking large pages. Here are the steps from MSDN +1. On the Start menu, click Run. In the Open box, type gpedit.msc. +2. On the Local Group Policy Editor console, expand Computer Configuration, and then expand Windows Settings. +3. Expand Security Settings, and then expand Local Policies. +4. Select the User Rights Assignment folder. +5. The policies will be displayed in the details pane. +6. In the pane, double-click Lock pages in memory. +7. In the Local Security Setting – Lock pages in memory dialog box, click Add User or Group. +8. In the Select Users, Service Accounts, or Groups dialog box, add an account that you will run the miner on +9. Reboot for change to take effect. + +### Low Hashrate +If you are not getting any other errors, but think you are getting a low hashrate, then check what you should actually be getting. A large list of hashrates for CPUs and CPUs is at [miner.pizza](https://miner.pizza/). + +If you are infact getting a low hashrate, then first check to make sure the computer isn't running other processing heavy tasks using your task manager. +Next, check your processor temperature. If your processor is over 70°C or 80°C, depending on if it's a CPU or GPU, the device may be overheating. In order to protect the computer from damage, it is throlling itself. The overheating may be due to dust or poor thermal design (if you are using a laptop, this is the problem). Clean your computer of dust then try again. + +If neither of these solve the problem, then consider asking the Monero Mining community on [Reddit](https://www.reddit.com/r/MoneroMining/) or [IRC (#monero-pools)](https://kiwiirc.com/client/irc.freenode.net/#monero-pools) for help. \ No newline at end of file diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/1.png b/_i18n/template/resources/user-guides/png/mine-to-pool/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0e0703837f1dd3733bc12e654a1318d09cca6bb2 Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/1.png differ diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/2.png b/_i18n/template/resources/user-guides/png/mine-to-pool/2.png new file mode 100644 index 0000000000000000000000000000000000000000..35113ec5910c1851f1746d4681d1d760cda7cb7c Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/2.png differ diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/3.png b/_i18n/template/resources/user-guides/png/mine-to-pool/3.png new file mode 100644 index 0000000000000000000000000000000000000000..68988ed18c3a46e75785cb97fa6d206b40c1de26 Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/3.png differ diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/4.png b/_i18n/template/resources/user-guides/png/mine-to-pool/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7f30927371c770586dc4f487b44e17e0e245c8a8 Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/4.png differ diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/5.png b/_i18n/template/resources/user-guides/png/mine-to-pool/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9795b32fba4afb0b871d026cabb18a4a79010f16 Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/5.png differ diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/6.png b/_i18n/template/resources/user-guides/png/mine-to-pool/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d0210df98d16dba243a8e21f69807bcb318c93df Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/6.png differ diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/miner.png b/_i18n/template/resources/user-guides/png/mine-to-pool/miner.png new file mode 100644 index 0000000000000000000000000000000000000000..aebd80046ea2c2f833fdd9d6f5af3ffe029f0b67 Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/miner.png differ diff --git a/_i18n/template/resources/user-guides/png/mine-to-pool/web.png b/_i18n/template/resources/user-guides/png/mine-to-pool/web.png new file mode 100644 index 0000000000000000000000000000000000000000..05be27ccbf619806d511203cac3d16e33a9d8113 Binary files /dev/null and b/_i18n/template/resources/user-guides/png/mine-to-pool/web.png differ diff --git a/resources/user-guides/mine-to-pool.md b/resources/user-guides/mine-to-pool.md index 36d998a631fe9877bda97f9348cc86b21987615e..a15afb137c2268c2305bb26b7e3a1355e683dee9 100644 --- a/resources/user-guides/mine-to-pool.md +++ b/resources/user-guides/mine-to-pool.md @@ -1,9 +1,9 @@ --- layout: user-guide -title: How to mine on a pool with xmr-stak-cpu +title: How to mine on a pool with xmr-stak permalink: /resources/user-guides/mine-to-pool.html mainVersion: - - "1" + - "2" - "1" - "0" --- diff --git a/resources/user-guides/png/mine_to_pool/1.png b/resources/user-guides/png/mine_to_pool/1.png index a6e7652877110b793894d9ae627c7466a56b7b0c..0e0703837f1dd3733bc12e654a1318d09cca6bb2 100644 Binary files a/resources/user-guides/png/mine_to_pool/1.png and b/resources/user-guides/png/mine_to_pool/1.png differ diff --git a/resources/user-guides/png/mine_to_pool/2.png b/resources/user-guides/png/mine_to_pool/2.png index 83a7dd163530cfe1a9d5c9c44b4482c7cdb40458..35113ec5910c1851f1746d4681d1d760cda7cb7c 100644 Binary files a/resources/user-guides/png/mine_to_pool/2.png and b/resources/user-guides/png/mine_to_pool/2.png differ diff --git a/resources/user-guides/png/mine_to_pool/3.png b/resources/user-guides/png/mine_to_pool/3.png index 70aeea2aaa91a34285fd0a0162f858a9b0bc76c6..68988ed18c3a46e75785cb97fa6d206b40c1de26 100644 Binary files a/resources/user-guides/png/mine_to_pool/3.png and b/resources/user-guides/png/mine_to_pool/3.png differ diff --git a/resources/user-guides/png/mine_to_pool/4.png b/resources/user-guides/png/mine_to_pool/4.png index 13361a0e85a8b82a374917df939bb97f4529ff32..7f30927371c770586dc4f487b44e17e0e245c8a8 100644 Binary files a/resources/user-guides/png/mine_to_pool/4.png and b/resources/user-guides/png/mine_to_pool/4.png differ diff --git a/resources/user-guides/png/mine_to_pool/5.png b/resources/user-guides/png/mine_to_pool/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9795b32fba4afb0b871d026cabb18a4a79010f16 Binary files /dev/null and b/resources/user-guides/png/mine_to_pool/5.png differ diff --git a/resources/user-guides/png/mine_to_pool/6.png b/resources/user-guides/png/mine_to_pool/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d0210df98d16dba243a8e21f69807bcb318c93df Binary files /dev/null and b/resources/user-guides/png/mine_to_pool/6.png differ diff --git a/resources/user-guides/png/mine_to_pool/miner.png b/resources/user-guides/png/mine_to_pool/miner.png new file mode 100644 index 0000000000000000000000000000000000000000..aebd80046ea2c2f833fdd9d6f5af3ffe029f0b67 Binary files /dev/null and b/resources/user-guides/png/mine_to_pool/miner.png differ diff --git a/resources/user-guides/png/mine_to_pool/web.png b/resources/user-guides/png/mine_to_pool/web.png new file mode 100644 index 0000000000000000000000000000000000000000..05be27ccbf619806d511203cac3d16e33a9d8113 Binary files /dev/null and b/resources/user-guides/png/mine_to_pool/web.png differ