From 28385911ea5c9b459b5a71746d9e98a7fcb45c52 Mon Sep 17 00:00:00 2001 From: nemosminer Date: Mon, 29 Oct 2018 11:13:29 +1300 Subject: [PATCH] Delete ccminercool.ps1 Slow/Obsolete --- OptionalMiners/ccminercool.ps1 | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 OptionalMiners/ccminercool.ps1 diff --git a/OptionalMiners/ccminercool.ps1 b/OptionalMiners/ccminercool.ps1 deleted file mode 100644 index 27b1cf041d..0000000000 --- a/OptionalMiners/ccminercool.ps1 +++ /dev/null @@ -1,24 +0,0 @@ -if (!(IsLoaded(".\Include.ps1"))) {. .\Include.ps1;RegisterLoaded(".\Include.ps1")} - -$Path = ".\Bin\NVIDIA-ccminercool177\coolMiner-x64.exe" -$Uri = "https://nemosminer.com/data/optional/coolMiner-x64-v1-7.7z" - -$Commands = [PSCustomObject]@{ - "lyra2z" = " -d $($Config.SelGPUCC) -i 20.5 --submit-stale -N 1 --hide-diff -q" #Lyra2z (compare speed and wattage draw compared to trex and cryptodreage as they all have 1%fee only require the best one not all 3..) - -} -$Name = (Get-Item $script:MyInvocation.MyCommand.Path).BaseName - -$Commands | Get-Member -MemberType NoteProperty | Select -ExpandProperty Name | ForEach { - [PSCustomObject]@{ - Type = "NVIDIA" - Path = $Path - Arguments = "-b $($Variables.NVIDIAMinerAPITCPPort) -R 1 -a $_ -o stratum+tcp://$($Pools.(Get-Algorithm($_)).Host):$($Pools.(Get-Algorithm($_)).Port) -u $($Pools.(Get-Algorithm($_)).User) -p $($Pools.(Get-Algorithm($_)).Pass)$($Commands.$_)" - HashRates = [PSCustomObject]@{(Get-Algorithm($_)) = $Stats."$($Name)_$(Get-Algorithm($_))_HashRate".Week * .99} # substract 1% devfee - API = "ccminer" - Port = $Variables.NVIDIAMinerAPITCPPort - Wrap = $false - URI = $Uri - User = $Pools.(Get-Algorithm($_)).User - } -}