From fadc5055b29455869cd2bb458a3edb635bf700c8 Mon Sep 17 00:00:00 2001 From: SChernykh Date: Tue, 21 Feb 2023 09:17:42 +0100 Subject: [PATCH] Updated `--no-autodiff` description --- docs/COMMAND_LINE.MD | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/COMMAND_LINE.MD b/docs/COMMAND_LINE.MD index e358e50..d4c66c2 100644 --- a/docs/COMMAND_LINE.MD +++ b/docs/COMMAND_LINE.MD @@ -21,7 +21,7 @@ --in-peers N Maximum number of incoming connections for p2p server (any value between 10 and 450) --start-mining N Start built-in miner using N threads (any value between 1 and 64) --mini Connect to p2pool-mini sidechain. Note that it will also change default p2p port from 37889 to 37888 ---no-autodiff Disable automatic difficulty adjustment for miners connected to stratum +--no-autodiff Disable automatic difficulty adjustment for miners connected to stratum (WARNING: incompatible with Nicehash and MRR) --rpc-login Specify username[:password] required for Monero RPC server --socks5 Specify IP:port of a SOCKS5 proxy to use for outgoing connections --no-dns disable DNS queries, use only IP addresses to connect to peers (seed node DNS will be unavailable too) diff --git a/src/main.cpp b/src/main.cpp index 2c70bc2..e3a3135 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -46,7 +46,7 @@ void p2pool_usage() "--in-peers N Maximum number of incoming connections for p2p server (any value between 10 and 450)\n" "--start-mining N Start built-in miner using N threads (any value between 1 and 64)\n" "--mini Connect to p2pool-mini sidechain. Note that it will also change default p2p port from %d to %d\n" - "--no-autodiff Disable automatic difficulty adjustment for miners connected to stratum\n" + "--no-autodiff Disable automatic difficulty adjustment for miners connected to stratum (WARNING: incompatible with Nicehash and MRR)\n" "--rpc-login Specify username[:password] required for Monero RPC server\n" "--socks5 Specify IP:port of a SOCKS5 proxy to use for outgoing connections\n" "--no-dns disable DNS queries, use only IP addresses to connect to peers (seed node DNS will be unavailable too)\n"