drg-xmrig 6.25.1-drg2: fix default pool port (3433) and algo
The bundled config had a portless pool URL (pool.dragonx.is), so xmrig fell back to its default port 3333, which is firewalled on the pool host -> repeating 'connect error: operation canceled'. The pool's stratum is plain TCP on 3433 and requires a shielded zs-address worker name. - src/config.example.json: url -> pool.dragonx.is:3433, algo -> rx/dragonx, user placeholder -> YOUR_DRGX_ZS_ADDRESS - scripts/pool_mine_example.cmd: point at the DragonX pool with rx/dragonx - scripts/build_windows.sh: fetch OpenSSL 1.1.1w from GitHub release mirror - bump APP_VERSION to 6.25.1-drg2 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,20 +1,15 @@
|
||||
:: Example batch file for mining Monero at a pool
|
||||
:: Example batch file for mining DragonX at the official pool
|
||||
::
|
||||
:: Format:
|
||||
:: xmrig.exe -o <pool address>:<pool port> -u <pool username/wallet> -p <pool password>
|
||||
:: xmrig.exe -o <pool address>:<pool port> -u <zs-address> -p x -a rx/dragonx
|
||||
::
|
||||
:: Fields:
|
||||
:: pool address The host name of the pool stratum or its IP address, for example pool.hashvault.pro
|
||||
:: pool port The port of the pool's stratum to connect to, for example 3333. Check your pool's getting started page.
|
||||
:: pool username/wallet For most pools, this is the wallet address you want to mine to. Some pools require a username
|
||||
:: pool password For most pools this can be just 'x'. For pools using usernames, you may need to provide a password as configured on the pool.
|
||||
::
|
||||
:: List of Monero mining pools:
|
||||
:: https://miningpoolstats.stream/monero
|
||||
::
|
||||
:: Choose pools outside of top 5 to help Monero network be more decentralized!
|
||||
:: Smaller pools also often have smaller fees/payout limits.
|
||||
:: pool address The DragonX pool stratum host, pool.dragonx.is
|
||||
:: pool port 3433 (plain TCP stratum, no TLS)
|
||||
:: zs-address Your DragonX shielded zs... address. The pool REQUIRES a shielded zs-address as the worker name.
|
||||
:: pass Just 'x'.
|
||||
:: algo rx/dragonx (aliases: rx/hush, dragonx)
|
||||
|
||||
cd /d "%~dp0"
|
||||
xmrig.exe -o xmrpool.eu:3333 -u YOUR_WALLET_ADDRESS -p x
|
||||
xmrig.exe -o pool.dragonx.is:3433 -u YOUR_DRGX_ZS_ADDRESS -p x -a rx/dragonx
|
||||
pause
|
||||
|
||||
Reference in New Issue
Block a user