SwichMostProfitableGroupUpMethod() public method

public SwichMostProfitableGroupUpMethod ( NiceHashSMA>.Dictionary NiceHashData, bool log = true ) : void
NiceHashData NiceHashSMA>.Dictionary
log bool
return void
Exemplo n.º 1
0
 /// <summary>
 /// SwichMostProfitable should check the best combination for most profit.
 /// Calculate profit for each supported algorithm per device and group.
 /// </summary>
 /// <param name="NiceHashData"></param>
 public static void SwichMostProfitableGroupUpMethod(Dictionary <AlgorithmType, NiceHashSMA> NiceHashData)
 {
     if (CurMiningSession != null)
     {
         CurMiningSession.SwichMostProfitableGroupUpMethod(NiceHashData);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// SwichMostProfitable should check the best combination for most profit.
 /// Calculate profit for each supported algorithm per device and group.
 /// </summary>
 /// <param name="niceHashData"></param>
 public static async Task SwichMostProfitableGroupUpMethod(Dictionary <AlgorithmType, NiceHashSma> niceHashData)
 {
     if (_curMiningSession != null)
     {
         await _curMiningSession.SwichMostProfitableGroupUpMethod(niceHashData);
     }
 }
Exemplo n.º 3
0
 /// <summary>
 /// SwichMostProfitable should check the best combination for most profit.
 /// Calculate profit for each supported algorithm per device and group.
 /// </summary>
 /// <param name="niceHashData"></param>
 public static async Task SwichMostProfitableGroupUpMethod()
 {
     if (_curMiningSession != null)
     {
         await _curMiningSession.SwichMostProfitableGroupUpMethod();
     }
 }