Skip to content

Commit 6a5c0b1

Browse files
help text
1 parent e1cd9fe commit 6a5c0b1

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# cmake global
22
cmake_minimum_required(VERSION 2.8.12)
33

4-
set(PROJECT_VERSION "2.1.16")
4+
set(PROJECT_VERSION "2.1.17")
55
if (${CMAKE_VERSION} VERSION_GREATER 3.0)
66
cmake_policy(SET CMP0042 OLD) # fix MACOSX_RPATH
77
cmake_policy(SET CMP0048 NEW) # allow VERSION argument in project()

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Node configuration:
7272
--opencl-platform <n> When mining using -G/--opencl use OpenCL platform n (default: 0).
7373
--opencl-device <n> When mining using -G/--opencl use OpenCL device n (default: 0).
7474
--opencl-devices <0 1 ..n> Select which OpenCL devices to mine on. Default is to use all
75-
-t, --mining-threads <n> Limit number of CPU/GPU miners to n (default: use everything available on selected platform)
75+
-t, --mining-threads <n> Limit number of CPU miners to n (default: use everything available on selected platform)
7676
--allow-opencl-cpu Allows CPU to be considered as an OpenCL device if the OpenCL platform supports it.
7777
--list-devices List the detected OpenCL/CUDA devices and exit. Should be combined with -G or -U flag
7878
--cl-extragpu-mem <n> Set the memory (in MB) you believe your GPU requires for stuff other than mining. default: 0
@@ -163,6 +163,9 @@ GasPriceBidding=0
163163
; max gas price you're willing to bid up to
164164
MaxGasPrice=35
165165
166+
; gas limit used when submitting solution
167+
GasLimit=200000
168+
166169
; the # of gwei to top the highest bidder
167170
BidTop=2
168171
@@ -230,6 +233,11 @@ make
230233

231234
You can then find the executable in the `build/ethminer` subfolder
232235

236+
### Credits
237+
238+
* LtTofu and other miner software developers on Discord, for their kernel optimizations.
239+
240+
233241

234242
### Donations
235243

ethminer/FarmClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ class FarmClient : public jsonrpc::Client
236236
t.nonce = m_txNonce;
237237
t.receiveAddress = toAddress(m_tokenContract);
238238
ProgOpt::Reload();
239-
t.gas = atoi(ProgOpt::Get("0xBitcoin", "GasLimit").c_str());
239+
t.gas = atoi(ProgOpt::Get("0xBitcoin", "GasLimit", "200000").c_str());
240240
m_startGas = atoi(ProgOpt::Get("0xBitcoin", "GasPrice").c_str());
241241
m_maxGas = atoi(ProgOpt::Get("0xBitcoin", "MaxGasPrice").c_str());
242242
t.gasPrice = RecommendedGasPrice(_challenge);

ethminer/MinerAux.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ class MinerCLI
582582
<< " --opencl-platform <n> When mining using -G/--opencl use OpenCL platform n (default: 0)." << endl
583583
<< " --opencl-device <n> When mining using -G/--opencl use OpenCL device n (default: 0)." << endl
584584
<< " --opencl-devices <0 1 ..n> Select which OpenCL devices to mine on. Default is to use all" << endl
585-
<< " -t, --mining-threads <n> Limit number of CPU/GPU miners to n (default: use everything available on selected platform)" << endl
585+
<< " -t, --mining-threads <n> Limit number of CPU miners to n (default: use everything available on selected platform)" << endl
586586
<< " --allow-opencl-cpu Allows CPU to be considered as an OpenCL device if the OpenCL platform supports it." << endl
587587
<< " --list-devices List the detected OpenCL/CUDA devices and exit. Should be combined with -G or -U flag" << endl
588588
<< " --cl-extragpu-mem <n> Set the memory (in MB) you believe your GPU requires for stuff other than mining. default: 0" << endl

0 commit comments

Comments
 (0)