File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ class FarmClient : public jsonrpc::Client
453
453
}
454
454
catch (std::exception & e)
455
455
{
456
- LogB << " Error in routine tokenBalance: " << e.what ();
456
+ LogD << " Error in routine tokenBalance: " << e.what ();
457
457
return 0 ;
458
458
}
459
459
}
Original file line number Diff line number Diff line change @@ -1006,7 +1006,9 @@ class MinerCLI
1006
1006
catch (jsonrpc::JsonRpcException& e)
1007
1007
{
1008
1008
connectedToNode = false ;
1009
- LogB << " An error occurred communicating with the node : " << e.what ();
1009
+ string msg = (m_opMode == OperationMode::Pool) ? " mining pool" : " node" ;
1010
+ LogB << " An error occurred communicating with your " << msg << " . Please check your host/port settings." ;
1011
+ LogB << " Error text: " << e.what ();
1010
1012
LogS << " Trying again in 5 seconds ..." ;
1011
1013
farmRetries++;
1012
1014
if (farmRetries == maxRetries)
Original file line number Diff line number Diff line change @@ -16,11 +16,17 @@ cd %~dp0
16
16
IF ERRORLEVEL 1 GOTO ERROR
17
17
18
18
19
- REM Copy tokenminer.ini and Readme file
19
+ REM Copy tokenminer.ini
20
+
20
21
copy " ..\tokenminer.ini" stage\tokenminer
21
- copy " ..\Readme.md" stage
22
+
23
+ REM convert readme to html and copy to staging. see https://github.com/joeyespo/grip
24
+
25
+ grip ../readme.md --export ./stage/readme.html
26
+
22
27
23
28
REM Copy binaries
29
+
24
30
copy " ..\build\ethminer\release\tokenminer.exe" stage\tokenminer
25
31
copy " ..\build\ethminer\release\libcurl.dll" stage\tokenminer
26
32
copy " ..\build\ethminer\release\libmicrohttpd-dll.dll" stage\tokenminer
You can’t perform that action at this time.
0 commit comments