Skip to content

Commit

Permalink
Allow any stratum pool, add suprnova as default
Browse files Browse the repository at this point in the history
  • Loading branch information
ocminer committed Oct 31, 2016
1 parent 8588733 commit be31903
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nheqminer/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ int main(int argc, char* argv[])
std::cout << "\t==================== www.nicehash.com ====================" << std::endl;
std::cout << std::endl;

std::string location = "eu";
std::string location = "zec.suprnova.cc:2142";
std::string user = "";
std::string password = "x";
int num_threads = -1;
Expand Down Expand Up @@ -426,10 +426,10 @@ int main(int argc, char* argv[])
#ifdef WIN32
if (use_avx)
start_mining<ZMinerAVX, ZcashStratumClientAVX>(api_port, num_threads, cuda_device_count, opencl_device_count, opencl_platform,
location, port, user, password, scSigAVX);
host, port, user, password, scSigAVX);
else
start_mining<ZMinerSSE2, ZcashStratumClientSSE2>(api_port, num_threads, cuda_device_count, opencl_device_count, opencl_platform,
location, port, user, password, scSigSSE2);
host, port, user, password, scSigSSE2);
#else
start_mining<ZMinerSSE2, ZcashStratumClientSSE2>(api_port, num_threads, cuda_device_count, opencl_device_count, opencl_platform,
host, port, user, password, scSigSSE2);
Expand Down

1 comment on commit be31903

@flippinz
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add in description to enable GPU : add "-cd 0" or if you have multiple GPU's run "-ci" for details. You need to specify device number and running "-cd" on its own will not enable your default GPU.

Please sign in to comment.