Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1885055

Browse files
committedFeb 14, 2017
disable unstable algos for SM6.x
1 parent ce17099 commit 1885055

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎NiceHashMiner/Devices/GroupAlgorithms.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,10 @@ public static Dictionary<MinerBaseType, List<Algorithm>> CreateDefaultsForGroup(
201201
var ret = new Dictionary<MinerBaseType, List<Algorithm>>() {
202202
{ MinerBaseType.ccminer,
203203
new List<Algorithm>() {
204-
//new Algorithm(MinerBaseType.ccminer, AlgorithmType.NeoScrypt, "neoscrypt"),
204+
new Algorithm(MinerBaseType.ccminer, AlgorithmType.NeoScrypt, "neoscrypt"),
205205
new Algorithm(MinerBaseType.ccminer, AlgorithmType.Lyra2REv2, "lyra2v2"),
206206
new Algorithm(MinerBaseType.ccminer, AlgorithmType.Decred, "decred"),
207-
//new Algorithm(MinerBaseType.ccminer, AlgorithmType.CryptoNight, "cryptonight"),
207+
new Algorithm(MinerBaseType.ccminer, AlgorithmType.CryptoNight, "cryptonight"),
208208
new Algorithm(MinerBaseType.ccminer, AlgorithmType.Lbry, "lbry"),
209209
new Algorithm(MinerBaseType.ccminer, AlgorithmType.X11Gost, "sib")
210210
}
@@ -230,6 +230,12 @@ public static Dictionary<MinerBaseType, List<Algorithm>> CreateDefaultsForGroup(
230230
}
231231
},
232232
};
233+
if (DeviceGroupType.NVIDIA_6_x == deviceGroupType) {
234+
ToRemoveAlgoTypes.AddRange(new AlgorithmType[] {
235+
AlgorithmType.NeoScrypt,
236+
AlgorithmType.CryptoNight
237+
});
238+
}
233239
if(DeviceGroupType.NVIDIA_2_1 == deviceGroupType || DeviceGroupType.NVIDIA_3_x == deviceGroupType) {
234240
ToRemoveAlgoTypes.AddRange(new AlgorithmType[] {
235241
AlgorithmType.NeoScrypt,

0 commit comments

Comments
 (0)
This repository has been archived.