Skip to content

Commit a11cc6d

Browse files
authored
Merge pull request #49 from BitPoolMining/Dev
Updated TRex to version 8.4
2 parents c561e67 + f0feb09 commit a11cc6d

File tree

413 files changed

+290
-11076
lines changed

Some content is hidden

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

413 files changed

+290
-11076
lines changed

BitPoolMiner/BitPoolMiner.csproj

Lines changed: 143 additions & 411 deletions
Large diffs are not rendered by default.

BitPoolMiner/MinerApps/t-rex-0.8.2-win-cuda10.0/config_example renamed to BitPoolMiner/MinerApps/t-rex-0.8.4-win-cuda10.0/config_example

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@
6161
"intensity": 20,
6262

6363
// Sliding window length in sec used to compute average hashrate.
64-
"hashrate-avr": 30, // Set to 3600 to get average over an hour
64+
"hashrate-avr": 60, // Set to 3600 to get average over an hour
65+
66+
// Sliding window length in sec used to compute sharerate.
67+
"sharerate-avr": 600,
6568

6669
// Path to the log file. If only file name set log will be saved into directory with the miner.
6770
"log-path": "t-rex.log",

BitPoolMiner/MinerApps/t-rex-0.8.2-win-cuda10.0/t-rex-help.txt renamed to BitPoolMiner/MinerApps/t-rex-0.8.4-win-cuda10.0/t-rex-help.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Options:
3333
x16r
3434
x16s
3535
x17
36+
x21s
3637
x22i
3738
-d, --devices Comma separated list of CUDA devices to use.
3839
Device IDs start counting from 0.
@@ -51,7 +52,8 @@ Options:
5152
--api-bind-http IP:port for the miner API via HTTP (default: 0.0.0.0:4067). Set to 0 to disable.
5253
-J --json-response Telnet API server will make json responses.
5354

54-
-N, --hashrate-avr Sliding window length in seconds used to compute average hashrate (default: 30).
55+
-N, --hashrate-avr Sliding window length in seconds used to compute average hashrate (default: 60).
56+
--sharerate-avr Sliding window length in seconds used to compute sharerate (default: 600).
5557
--gpu-report-interval GPU stats report frequency. (default: 5. every 5th share)
5658
-q, --quiet Quiet mode. No GPU stats at all.
5759
--no-color Disable color output for console.

BitPoolMiner/Miners/TRex.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public TRex(HardwareType hardwareType, MinerBaseType minerBaseType) : base("TRex
2323
{
2424
string versionedDirectory = "";
2525
MinerFileName = "t-rex.exe";
26-
versionedDirectory = "t-rex-0.8.2-win-cuda10.0";
26+
versionedDirectory = "t-rex-0.8.4-win-cuda10.0";
2727
MinerWorkingDirectory = Path.Combine(Utils.Core.GetBaseMinersDir(), versionedDirectory);
2828

2929
ApiPort = 4067;

0 commit comments

Comments
 (0)