Skip to content

Commit

Permalink
cc-mtp
Browse files Browse the repository at this point in the history
  • Loading branch information
MaynardMiner committed Jul 25, 2019
1 parent 1a3b0d8 commit eeeeb49
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/update/nvidia-linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"NVIDIA2": ".\\bin\\cc-mtp-2\\ccminer",
"NVIDIA3": ".\\bin\\cc-mtp-3\\ccminer",
"minername": "ccminer",
"version": "1.1.22",
"version": "1.1.25",
"optional": "Yes",
"uri": "https://github.com/MaynardMiner/MM.Compiled-Miners/releases/download/v4.0/cc-mtp-linux.tar.gz"
},
Expand Down
2 changes: 1 addition & 1 deletion config/update/nvidia-win.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"NVIDIA2": ".\\bin\\cc-mtp-2\\ccminer.exe",
"NVIDIA3": ".\\bin\\cc-mtp-3\\ccminer.exe",
"minername": "ccminer.exe",
"version": " 1.1.22",
"version": "1.1.25",
"optional": "Yes",
"uri": "https://github.com/MaynardMiner/MM.Compiled-Miners/releases/download/v.3.0/cc-mtp-windows.zip"
},
Expand Down
7 changes: 4 additions & 3 deletions help/Change.log
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,9 @@ beta changes- report if you have issues.
* ``-Optional ethminer``
* ``-Optional etminer-amd``
* tt-miner beta linux test version added.
* ``-Optional tt-miner`` must be specified to use.
* Placed for testing by developer.
* Report issues in discord, so developer
username ``trailingstop`` can investigate.
* Report issues in discord (nvidia channel)
* myr-gr algorithm removed.
* GPU watchdog looks for power as well as temperature.
* more accurate detector of a crashed card for AMD
Expand All @@ -503,4 +503,5 @@ beta changes- report if you have issues.

## Updates
* Bminer updated
* ttminer updated (This is beta release for testing)
* ttminer updated (This is beta release for testing)
* cc-mtp updated
4 changes: 2 additions & 2 deletions miners/gpu/nvidia/tt-miner.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ $(vars).NVIDIATypes | ForEach-Object {
if ($_.Worker) { $Worker = "-worker $($_.Worker) " }else { $Worker = $Null }
if ($IsWindows) { $continue = $true }
## only three algos for now
elseif ($IsLinux) {
elseif ($IsLinux -and "tt-miner" -in $(args).optional) {
switch ($MinerAlgo) {
"mtp" { $continue = $true }
"ethash" { $continue = $true }
"progpow" { $continue = $true }
}
}
if ($contine -eq $true) {
if ($continue -eq $true) {
[PSCustomObject]@{
MName = $Name
Coin = $(vars).Coins
Expand Down

0 comments on commit eeeeb49

Please sign in to comment.