Skip to content

Commit

Permalink
Update miner Gminer (nvidia)
Browse files Browse the repository at this point in the history
- disable Beam on nicehash, again.
  • Loading branch information
RainbowMiner committed Jan 28, 2019
1 parent 498ff67 commit 6a84409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Miners/Gminer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6a84409

Please sign in to comment.