Skip to content

Commit 6f793ab

Browse files
authored
Merge pull request #50 from BitPoolMining/Dev
Updated WildRig to version 13.4
2 parents a11cc6d + 997eba9 commit 6f793ab

File tree

280 files changed

+10834
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

280 files changed

+10834
-20
lines changed

BitPoolMiner/BitPoolMiner.csproj

Lines changed: 281 additions & 13 deletions
Large diffs are not rendered by default.

BitPoolMiner/MinerApps/wildrig-multi-0.13.1-beta/kernel-baffin.bin renamed to BitPoolMiner/MinerApps/wildrig-multi-0.13.4-beta/kernel-baffin.bin

2.06 MB
Binary file not shown.

BitPoolMiner/MinerApps/wildrig-multi-0.13.1-beta/kernel-ellesmere.bin renamed to BitPoolMiner/MinerApps/wildrig-multi-0.13.4-beta/kernel-ellesmere.bin

2.06 MB
Binary file not shown.

BitPoolMiner/MinerApps/wildrig-multi-0.13.1-beta/kernel-fiji.bin renamed to BitPoolMiner/MinerApps/wildrig-multi-0.13.4-beta/kernel-fiji.bin

2.06 MB
Binary file not shown.

BitPoolMiner/MinerApps/wildrig-multi-0.13.1-beta/kernel-gfx900.bin renamed to BitPoolMiner/MinerApps/wildrig-multi-0.13.4-beta/kernel-gfx900.bin

2.05 MB
Binary file not shown.

BitPoolMiner/MinerApps/wildrig-multi-0.13.1-beta/kernel-tonga.bin renamed to BitPoolMiner/MinerApps/wildrig-multi-0.13.4-beta/kernel-tonga.bin

2.06 MB
Binary file not shown.

BitPoolMiner/MinerApps/wildrig-multi-0.13.1-beta/start.bat renamed to BitPoolMiner/MinerApps/wildrig-multi-0.13.4-beta/start.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22

33
:loop
4-
wildrig.exe --algo algo --opencl-launch 18x0 --url pool:port --user wallet --pass password
4+
wildrig.exe --algo algo --opencl-threads 2 --opencl-launch 18x0 --url pool:port --user wallet --pass password
55
if ERRORLEVEL 1000 goto custom
66
timeout /t 5
77
goto loop

BitPoolMiner/MinerApps/wildrig-multi-0.13.1-beta/wildrig.exe renamed to BitPoolMiner/MinerApps/wildrig-multi-0.13.4-beta/wildrig.exe

885 KB
Binary file not shown.

BitPoolMiner/Miners/Miner.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ private void FormatPerMinerCoinCombo()
8989
{
9090
MinerArguments = MinerArguments.Replace("x16r", "x22i");
9191
}
92+
else if (MinerBaseType == MinerBaseType.WildRig && CoinType == CoinType.SUQA)
93+
{
94+
MinerArguments = MinerArguments.Replace("x16r", "x22i");
95+
}
9296
}
9397

9498
/// <summary>

BitPoolMiner/Miners/WildRig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public WildRig(HardwareType hardwareType, MinerBaseType minerBaseType) : base("W
2323
{
2424
string versionedDirectory = "";
2525
MinerFileName = "wildrig.exe";
26-
versionedDirectory = "wildrig-multi-0.13.1-beta";
26+
versionedDirectory = "wildrig-multi-0.13.4-beta";
2727
MinerWorkingDirectory = Path.Combine(Utils.Core.GetBaseMinersDir(), versionedDirectory);
2828

2929
ApiPort = 2883;

0 commit comments

Comments
 (0)