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

Don't count empty email as explicit investor #1761

Merged
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
17 changes: 9 additions & 8 deletions src/neuralnet/researcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1006,14 +1006,6 @@ bool Researcher::ConfiguredForInvestorMode(bool log)
return true;
}

if (Researcher::Email().empty()) {
if (log) LogPrintf(
"WARNING: Please set 'email=<your BOINC account email>' in "
"gridcoinresearch.conf. Continuing in investor mode.");

return true;
}

return false;
}

Expand All @@ -1034,6 +1026,15 @@ void Researcher::Reload()
return;
}

if (Researcher::Email().empty()) {
LogPrintf(
"WARNING: Please set 'email=<your BOINC account email>' in "
"gridcoinresearch.conf. Continuing in investor mode.");

StoreResearcher(Researcher()); // Investor
return;
}

LogPrintf("Loading BOINC CPIDs...");

if (!GetArgument("boinckey", "").empty()) {
Expand Down