Skip to content

Commit

Permalink
Update miner Xmrig to v2.10.0 (amd,cpu,nvidia)
Browse files Browse the repository at this point in the history
#904 Added new algorithm cn-pico/trtl (aliases cryptonight-turtle, cn-trtl) for upcoming TurtleCoin (TRTL) fork.
Default value for option max-cpu-usage changed to 100 also this option now deprecated.
  • Loading branch information
RainbowMiner committed Jan 24, 2019
1 parent d77a540 commit 353b59f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Binary file modified Data/minersha256.json
Binary file not shown.
3 changes: 2 additions & 1 deletion Miners/XmrigAmd.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ param(
)

$Path = ".\Bin\AMD-Xmrig\xmrig-amd.exe"
$Uri = "https://github.com/RainbowMiner/miner-binaries/releases/download/v2.9.4-xmrig/xmrig-amd-2.9.4-msvc-win64-rbm.7z"
$Uri = "https://github.com/RainbowMiner/miner-binaries/releases/download/v2.10.0-xmrig/xmrig-amd-2.10.0-msvc-win64-rbm.7z"
$ManualUri = "https://github.com/xmrig/xmrig-amd/releases"
$Port = "304{0:d2}"
$DevFee = 0.0
Expand All @@ -27,6 +27,7 @@ $Commands = [PSCustomObject[]]@(
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy/tube"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy/xhv"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-turtle"; Params = ""}
)

$Name = Get-Item $MyInvocation.MyCommand.Path | Select-Object -ExpandProperty BaseName
Expand Down
3 changes: 2 additions & 1 deletion Miners/XmrigCpu.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ param(
)

$Path = ".\Bin\CPU-Xmrig\xmrig.exe"
$Uri = "https://github.com/RainbowMiner/miner-binaries/releases/download/v2.9.4-xmrig/xmrig-2.9.4-msvc-win64-rbm.7z"
$Uri = "https://github.com/RainbowMiner/miner-binaries/releases/download/v2.10.0-xmrig/xmrig-2.10.0-msvc-win64-rbm.7z"
$ManualUri = "https://github.com/xmrig/xmrig/releases"
$Port = "521{0:d2}"
$DevFee = 0.0
Expand All @@ -27,6 +27,7 @@ $Commands = [PSCustomObject[]]@(
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy/tube"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy/xhv"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-turtle"; Params = ""}
)

$Name = Get-Item $MyInvocation.MyCommand.Path | Select-Object -ExpandProperty BaseName
Expand Down
3 changes: 2 additions & 1 deletion Miners/XmrigNvidia.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ param(
)

$Path = ".\Bin\NVIDIA-Xmrig\xmrig-nvidia.exe"
$Uri = "https://github.com/RainbowMiner/miner-binaries/releases/download/v2.9.4-xmrig/xmrig-nvidia-2.9.4-msvc-win64-rbm.7z"
$Uri = "https://github.com/RainbowMiner/miner-binaries/releases/download/v2.10.0-xmrig/xmrig-nvidia-2.10.0-msvc-win64-rbm.7z"
$ManualUri = "https://github.com/xmrig/xmrig-nvidia/releases"
$Port = "303{0:d2}"
$DevFee = 0.0
Expand All @@ -28,6 +28,7 @@ $Commands = [PSCustomObject[]]@(
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy/tube"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-heavy/xhv"; Params = ""}
[PSCustomObject]@{MainAlgorithm = "cryptonight-turtle"; Params = ""}
)

$Name = Get-Item $MyInvocation.MyCommand.Path | Select-Object -ExpandProperty BaseName
Expand Down

0 comments on commit 353b59f

Please sign in to comment.