Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct authors of RandomX mining code #2551

Merged
merged 1 commit into from
Nov 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions xmrstak/cli/cli-miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -867,12 +867,12 @@ int main(int argc, char* argv[])
printer::inst()->print_str(get_version_str_short().c_str());
printer::inst()->print_str("\n\n");
printer::inst()->print_str("Brought to you by fireice_uk and psychocrypt under GPLv3.\n");
printer::inst()->print_str("Based on CPU mining code by wolf9466 (heavily optimized by fireice_uk).\n");
printer::inst()->print_str("Based on CPU mining code by tevador and SChernykh.\n");
#ifndef CONF_NO_CUDA
printer::inst()->print_str("Based on NVIDIA mining code by KlausT and psychocrypt.\n");
printer::inst()->print_str("Based on NVIDIA mining code by SChernykh.\n");
#endif
#ifndef CONF_NO_OPENCL
printer::inst()->print_str("Based on OpenCL mining code by wolf9466.\n");
printer::inst()->print_str("Based on OpenCL mining code by SChernykh.\n");
#endif
printer::inst()->print_str("-------------------------------------------------------------------\n");
printer::inst()->print_str("You can use following keys to display reports:\n");
Expand Down