Skip to content

Commit 20d405e

Browse files
author
nicehashdev
committed
Merge pull request #7 from Raskal8/master
Added Support For All 13 Current Algos Including Qubit & Quark
2 parents 988e93d + 5cf98b7 commit 20d405e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/NiceHashBotLib/APIWrapper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ public class APIWrapper
2828
/// <summary>
2929
/// Names for algorithms.
3030
/// </summary>
31-
public readonly static string[] ALGORITHM_NAME = { "Scrypt", "SHA256", "Scrypt-A.-Nf.", "X11", "X13", "Keccak", "X15", "Nist5", "NeoScrypt", "Lyra2RE", "WhirlpoolX" };
31+
public readonly static string[] ALGORITHM_NAME = { "Scrypt", "SHA256", "Scrypt-A.-Nf.", "X11", "X13", "Keccak", "X15", "Nist5", "NeoScrypt", "Lyra2RE", "WhirlpoolX", "Qubit", "Quark" };
3232

3333
/// <summary>
3434
/// Total number of algorithms.
3535
/// </summary>
36-
public readonly static int NUMBER_OF_ALGORITHMS = 11;
36+
public readonly static int NUMBER_OF_ALGORITHMS = 13;
3737

3838
/// <summary>
3939
/// Price decrease steps for all algorithms.
4040
/// </summary>
41-
public readonly static double[] PRICE_DECREASE_STEP = { -0.001, -0.0001, -0.002, -0.001, -0.001, -0.0001, -0.001, -0.001, -0.01, -0.002, -0.0001 };
41+
public readonly static double[] PRICE_DECREASE_STEP = { -0.001, -0.0001, -0.002, -0.001, -0.001, -0.0001, -0.001, -0.001, -0.01, -0.002, -0.0001, -0.0005, -0.001 };
4242

4343
/// <summary>
4444
/// Price decrase interval - it is 10 minutes.

0 commit comments

Comments
 (0)