Skip to content

Commit c5f3a22

Browse files
committed
Small fix?
Rare bug I can't seem to track down.
1 parent 0ba09b6 commit c5f3a22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MiningService/MiningService/Utilities/Utilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public static bool LaunchMiners(List<MinerList> minerList)
296296
{
297297
miner.launchAttempts = 0;
298298
}
299-
else if (miner.launchAttempts > 4 && !miner.minerDisabled)
299+
else if (miner.launchAttempts == 4 && !miner.minerDisabled)
300300
{
301301
Log("Miner " + miner.executable + " has failed to launch 5 times, and is now disabled.");
302302
miner.minerDisabled = true;

0 commit comments

Comments
 (0)