From 454f97fa0f5fbba23c7f193c141537075acef2b7 Mon Sep 17 00:00:00 2001 From: SChernykh Date: Fri, 3 Dec 2021 12:30:09 +0100 Subject: [PATCH] Updated GhostRider documentation Added examples for SSL port command line that don't use #1 pool. --- scripts/rtm_ghostrider_example.cmd | 3 +++ src/crypto/ghostrider/README.md | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/rtm_ghostrider_example.cmd b/scripts/rtm_ghostrider_example.cmd index f4c4342e..8b1f4999 100644 --- a/scripts/rtm_ghostrider_example.cmd +++ b/scripts/rtm_ghostrider_example.cmd @@ -16,5 +16,8 @@ :: Smaller pools also often have smaller fees/payout limits. cd %~dp0 +:: Use this command line to connect to non-SSL port xmrig.exe -a gr -o raptoreumemporium.com:3008 -u WALLET_ADDRESS -p x +:: Or use this command line to connect to an SSL port +:: xmrig.exe -a gr -o rtm.suprnova.cc:4273 --tls -u WALLET_ADDRESS -p x pause diff --git a/src/crypto/ghostrider/README.md b/src/crypto/ghostrider/README.md index b1614abd..4a34f076 100644 --- a/src/crypto/ghostrider/README.md +++ b/src/crypto/ghostrider/README.md @@ -6,12 +6,12 @@ No tuning is required - auto-config works well on most CPUs! ### Sample command line (non-SSL port) ``` -xmrig -a gr -o raptoreumemporium.com:3008 -u WALLET_ADDRESS +xmrig -a gr -o raptoreumemporium.com:3008 -u WALLET_ADDRESS -p x ``` ### Sample command line (SSL port) ``` -xmrig -a gr -o us.flockpool.com:5555 --tls -u WALLET_ADDRESS +xmrig -a gr -o rtm.suprnova.cc:4273 --tls -u WALLET_ADDRESS -p x ``` You can use **rtm_ghostrider_example.cmd** as a template and put pool URL and your wallet address there. The general XMRig documentation is available [here](https://xmrig.com/docs/miner).