Skip to content

Commit

Permalink
Merge pull request #1761 from cyrossignol/investor-email
Browse files Browse the repository at this point in the history
Don't count empty email as explicit investor
  • Loading branch information
jamescowens authored Jun 26, 2020
2 parents 9dcb47e + beff1d9 commit 0a212c1
Showing 1 changed file with 9 additions and 8 deletions.
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

0 comments on commit 0a212c1

Please sign in to comment.