Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
554 changes: 143 additions & 411 deletions BitPoolMiner/BitPoolMiner.csproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@
"intensity": 20,

// Sliding window length in sec used to compute average hashrate.
"hashrate-avr": 30, // Set to 3600 to get average over an hour
"hashrate-avr": 60, // Set to 3600 to get average over an hour

// Sliding window length in sec used to compute sharerate.
"sharerate-avr": 600,

// Path to the log file. If only file name set log will be saved into directory with the miner.
"log-path": "t-rex.log",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Options:
x16r
x16s
x17
x21s
x22i
-d, --devices Comma separated list of CUDA devices to use.
Device IDs start counting from 0.
Expand All @@ -51,7 +52,8 @@ Options:
--api-bind-http IP:port for the miner API via HTTP (default: 0.0.0.0:4067). Set to 0 to disable.
-J --json-response Telnet API server will make json responses.

-N, --hashrate-avr Sliding window length in seconds used to compute average hashrate (default: 30).
-N, --hashrate-avr Sliding window length in seconds used to compute average hashrate (default: 60).
--sharerate-avr Sliding window length in seconds used to compute sharerate (default: 600).
--gpu-report-interval GPU stats report frequency. (default: 5. every 5th share)
-q, --quiet Quiet mode. No GPU stats at all.
--no-color Disable color output for console.
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion BitPoolMiner/Miners/TRex.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public TRex(HardwareType hardwareType, MinerBaseType minerBaseType) : base("TRex
{
string versionedDirectory = "";
MinerFileName = "t-rex.exe";
versionedDirectory = "t-rex-0.8.2-win-cuda10.0";
versionedDirectory = "t-rex-0.8.4-win-cuda10.0";
MinerWorkingDirectory = Path.Combine(Utils.Core.GetBaseMinersDir(), versionedDirectory);

ApiPort = 4067;
Expand Down

This file was deleted.

Binary file not shown.
Loading