Skip to content

Commit

Permalink
Remove Color by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravencoin-Miner committed Apr 18, 2018
1 parent b8becb5 commit f007263
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ccminer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -919,16 +919,16 @@ int share_result(int result, int pooln, double sharediff, const char *reason)
RVN = (0.1005813032)*(hashrate)/(net_diff);
ravencolorcounter = rand() % 3;
if (ravencolorcounter == 0) {
applog(LOG_NOTICE, CL_MA2 "RVN/day: %.3f RVN", RVN); //blue-purple
applog(LOG_NOTICE, /*CL_MA2*/ "RVN/day: %.3f RVN", RVN); //blue-purple
}
if (ravencolorcounter == 1) {
applog(LOG_NOTICE, CL_RD2 "RVN/day: %.3f RVN", RVN); //red
applog(LOG_NOTICE, /*CL_RD2*/ "RVN/day: %.3f RVN", RVN); //red
}
if (ravencolorcounter == 2) {
applog(LOG_NOTICE, CL_GR2 "RVN/day: %.3f RVN", RVN); //orange
applog(LOG_NOTICE, /*CL_GR2*/ "RVN/day: %.3f RVN", RVN); //orange
}
if (ravencolorcounter != 0 && ravencolorcounter != 1 && ravencolorcounter != 2) {
applog(LOG_NOTICE, CL_MA2 "RVN/day: %.3f RVN", RVN); //blue-purple
applog(LOG_NOTICE, /*CL_MA2*/ "RVN/day: %.3f RVN", RVN); //blue-purple
}
}

Expand Down

0 comments on commit f007263

Please sign in to comment.