From debba5011e6485d4fa71b25617ac62c5609bca1c Mon Sep 17 00:00:00 2001 From: Nate Woolls Date: Mon, 3 Feb 2020 21:16:37 -0500 Subject: [PATCH] Do not automatically add feature URL fragements for NiceHash pools * May not / does not work with some BFGMiner forks (e.g. jstefanop) --- MultiMiner.Xgminer/Miner.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/MultiMiner.Xgminer/Miner.cs b/MultiMiner.Xgminer/Miner.cs index d01171eb5..a562018b2 100644 --- a/MultiMiner.Xgminer/Miner.cs +++ b/MultiMiner.Xgminer/Miner.cs @@ -250,13 +250,6 @@ public Process Launch(string reason = "") + Environment.NewLine + Environment.NewLine + ex.Message); } - //automatically add the #xnsub & #skipcbcheck fragments to pool URIs when mining NiceHash with BFGMiner - if (!legacyApi && pool.Host.ToLower().Contains("nicehash.com")) - { - poolUri = PoolFeatures.UpdatePoolFeature(poolUri, PoolFeatures.XNSubFragment, true); - poolUri = PoolFeatures.UpdatePoolFeature(poolUri, PoolFeatures.SkipCBCheckFragment, true); - } - if (pool.QuotaEnabled) argument = string.Format("--quota \"{2};{0}\" -u {1}", poolUri, pool.Username, pool.Quota); else