@@ -201,10 +201,10 @@ public static Dictionary<MinerBaseType, List<Algorithm>> CreateDefaultsForGroup(
201
201
var ret = new Dictionary < MinerBaseType , List < Algorithm > > ( ) {
202
202
{ MinerBaseType . ccminer ,
203
203
new List < Algorithm > ( ) {
204
- // new Algorithm(MinerBaseType.ccminer, AlgorithmType.NeoScrypt, "neoscrypt"),
204
+ new Algorithm ( MinerBaseType . ccminer , AlgorithmType . NeoScrypt , "neoscrypt" ) ,
205
205
new Algorithm ( MinerBaseType . ccminer , AlgorithmType . Lyra2REv2 , "lyra2v2" ) ,
206
206
new Algorithm ( MinerBaseType . ccminer , AlgorithmType . Decred , "decred" ) ,
207
- // new Algorithm(MinerBaseType.ccminer, AlgorithmType.CryptoNight, "cryptonight"),
207
+ new Algorithm ( MinerBaseType . ccminer , AlgorithmType . CryptoNight , "cryptonight" ) ,
208
208
new Algorithm ( MinerBaseType . ccminer , AlgorithmType . Lbry , "lbry" ) ,
209
209
new Algorithm ( MinerBaseType . ccminer , AlgorithmType . X11Gost , "sib" )
210
210
}
@@ -230,6 +230,12 @@ public static Dictionary<MinerBaseType, List<Algorithm>> CreateDefaultsForGroup(
230
230
}
231
231
} ,
232
232
} ;
233
+ if ( DeviceGroupType . NVIDIA_6_x == deviceGroupType ) {
234
+ ToRemoveAlgoTypes . AddRange ( new AlgorithmType [ ] {
235
+ AlgorithmType . NeoScrypt ,
236
+ AlgorithmType . CryptoNight
237
+ } ) ;
238
+ }
233
239
if ( DeviceGroupType . NVIDIA_2_1 == deviceGroupType || DeviceGroupType . NVIDIA_3_x == deviceGroupType ) {
234
240
ToRemoveAlgoTypes . AddRange ( new AlgorithmType [ ] {
235
241
AlgorithmType . NeoScrypt ,
0 commit comments