File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
# cmake global
2
2
cmake_minimum_required (VERSION 2.8.12 )
3
3
4
- set (PROJECT_VERSION "2.1.16 " )
4
+ set (PROJECT_VERSION "2.1.17 " )
5
5
if (${CMAKE_VERSION} VERSION_GREATER 3.0 )
6
6
cmake_policy (SET CMP0042 OLD ) # fix MACOSX_RPATH
7
7
cmake_policy (SET CMP0048 NEW ) # allow VERSION argument in project()
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ Node configuration:
72
72
--opencl-platform <n> When mining using -G/--opencl use OpenCL platform n (default: 0).
73
73
--opencl-device <n> When mining using -G/--opencl use OpenCL device n (default: 0).
74
74
--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)
76
76
--allow-opencl-cpu Allows CPU to be considered as an OpenCL device if the OpenCL platform supports it.
77
77
--list-devices List the detected OpenCL/CUDA devices and exit. Should be combined with -G or -U flag
78
78
--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
163
163
; max gas price you're willing to bid up to
164
164
MaxGasPrice=35
165
165
166
+ ; gas limit used when submitting solution
167
+ GasLimit=200000
168
+
166
169
; the # of gwei to top the highest bidder
167
170
BidTop=2
168
171
@@ -230,6 +233,11 @@ make
230
233
231
234
You can then find the executable in the ` build/ethminer ` subfolder
232
235
236
+ ### Credits
237
+
238
+ * LtTofu and other miner software developers on Discord, for their kernel optimizations.
239
+
240
+
233
241
234
242
### Donations
235
243
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ class FarmClient : public jsonrpc::Client
236
236
t.nonce = m_txNonce;
237
237
t.receiveAddress = toAddress (m_tokenContract);
238
238
ProgOpt::Reload ();
239
- t.gas = atoi (ProgOpt::Get (" 0xBitcoin" , " GasLimit" ).c_str ());
239
+ t.gas = atoi (ProgOpt::Get (" 0xBitcoin" , " GasLimit" , " 200000 " ).c_str ());
240
240
m_startGas = atoi (ProgOpt::Get (" 0xBitcoin" , " GasPrice" ).c_str ());
241
241
m_maxGas = atoi (ProgOpt::Get (" 0xBitcoin" , " MaxGasPrice" ).c_str ());
242
242
t.gasPrice = RecommendedGasPrice (_challenge);
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ class MinerCLI
582
582
<< " --opencl-platform <n> When mining using -G/--opencl use OpenCL platform n (default: 0)." << endl
583
583
<< " --opencl-device <n> When mining using -G/--opencl use OpenCL device n (default: 0)." << endl
584
584
<< " --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
586
586
<< " --allow-opencl-cpu Allows CPU to be considered as an OpenCL device if the OpenCL platform supports it." << endl
587
587
<< " --list-devices List the detected OpenCL/CUDA devices and exit. Should be combined with -G or -U flag" << endl
588
588
<< " --cl-extragpu-mem <n> Set the memory (in MB) you believe your GPU requires for stuff other than mining. default: 0" << endl
You can’t perform that action at this time.
0 commit comments