Skip to content

Commit 32d43ae

Browse files
committed
Remove Debugging
1 parent ce83365 commit 32d43ae

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/masternode-budget.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -520,10 +520,9 @@ class CBudgetProposal
520520
{
521521
std::string ret=strURL;
522522
std::string delim ("://");
523-
std::size_t found = strURL.find(delim);
524-
if (found == std::string::npos)
523+
if (strURL.find(delim) == std::string::npos)
525524
{
526-
LogPrintf("StrURL %s doesn't contain %s\n", strURL, delim);
525+
// URL is missing scheme; add one
527526
ret = scheme+"://"+strURL;
528527
}
529528
return ret;

0 commit comments

Comments
 (0)