diff --git a/Miners/Gminer.ps1 b/Miners/Gminer.ps1 index 3d48777c1d..bd4c5fe5f1 100644 --- a/Miners/Gminer.ps1 +++ b/Miners/Gminer.ps1 @@ -15,7 +15,7 @@ $Cuda = "9.0" if (-not $Session.DevicesByTypes.NVIDIA -and -not $InfoOnly) {return} # No NVIDIA present in system $Commands = [PSCustomObject[]]@( - [PSCustomObject]@{MainAlgorithm = "Aeternity"; MinMemGB = 8; Params = "--algo aeternity"; ExtendInterval = 2; Penalty = 0} #Equihash Cuckaroo29/Aeternity + [PSCustomObject]@{MainAlgorithm = "Aeternity"; MinMemGB = 8; Params = "--algo aeternity"; ExtendInterval = 2; Penalty = 0} #Equihash Cuckoo29/Aeternity [PSCustomObject]@{MainAlgorithm = "Cuckaroo29"; MinMemGB = 8; Params = "--algo grin29"; ExtendInterval = 2; Penalty = 0} #Equihash Cuckaroo29/GRIN [PSCustomObject]@{MainAlgorithm = "Equihash965"; MinMemGB = 2; Params = "--algo 96_5"} #Equihash 96,5 [PSCustomObject]@{MainAlgorithm = "Equihash1445"; MinMemGB = 2; Params = "--algo 144_5"} #Equihash 144,5 @@ -57,7 +57,7 @@ $Session.DevicesByTypes.NVIDIA | Select-Object Vendor, Model -Unique | ForEach-O $DeviceIDsAll = $Miner_Device.Type_Vendor_Index -join ' ' - if ($Pools.$Algorithm_Norm.Host -and $Miner_Device) { + if ($Pools.$Algorithm_Norm.Host -and $Miner_Device -and ($Algorithm_Norm -ne "Equihash25x5" -or $Pools.$Algorithm_Norm.Name -notmatch "nicehash")) { $Pool_Port = if ($Pools.$Algorithm_Norm.Ports -ne $null -and $Pools.$Algorithm_Norm.Ports.GPU) {$Pools.$Algorithm_Norm.Ports.GPU} else {$Pools.$Algorithm_Norm.Port} [PSCustomObject]@{ Name = $Miner_Name