Skip to content

Commit

Permalink
Remove Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
CaveSpectre11 committed Jul 15, 2019
1 parent ce83365 commit 32d43ae
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/masternode-budget.h
Original file line number Diff line number Diff line change
Expand Up @@ -520,10 +520,9 @@ class CBudgetProposal
{
std::string ret=strURL;
std::string delim ("://");
std::size_t found = strURL.find(delim);
if (found == std::string::npos)
if (strURL.find(delim) == std::string::npos)
{
LogPrintf("StrURL %s doesn't contain %s\n", strURL, delim);
// URL is missing scheme; add one
ret = scheme+"://"+strURL;
}
return ret;
Expand Down

0 comments on commit 32d43ae

Please sign in to comment.