Skip to content

Commit 988e93d

Browse files
author
nicehashdev
committed
Support for WhirlpoolX algorithm
1 parent ba9912e commit 988e93d

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" };
31+
public readonly static string[] ALGORITHM_NAME = { "Scrypt", "SHA256", "Scrypt-A.-Nf.", "X11", "X13", "Keccak", "X15", "Nist5", "NeoScrypt", "Lyra2RE", "WhirlpoolX" };
3232

3333
/// <summary>
3434
/// Total number of algorithms.
3535
/// </summary>
36-
public readonly static int NUMBER_OF_ALGORITHMS = 10;
36+
public readonly static int NUMBER_OF_ALGORITHMS = 11;
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 };
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 };
4242

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

0 commit comments

Comments
 (0)