Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from kickstart011/master
Browse files Browse the repository at this point in the history
Fix typo with param parsing.
  • Loading branch information
KBomba committed Jul 16, 2015
2 parents 677b653 + ee0629b commit 08aeee3
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions MinerControl/Services/NiceHashService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,7 @@ public override void Initialize(IDictionary<string, object> data)
else
{
DetectStratum = false;
if (_param1.Contains(".eu.") || _param2.Contains(".eu.") || _param3.Contains(".eu."))
{
_useWestHash = false;
}
else
{
_useWestHash = true;
}
if (!_param1.Contains(".eu.") && !_param2.Contains(".eu.") && !_param3.Contains(".eu.")) _useWestHash = true;
}

object[] items = data["algos"] as object[];
Expand Down

0 comments on commit 08aeee3

Please sign in to comment.