Skip to content

Commit

Permalink
Merge pull request #103 from crowning-/patch-3
Browse files Browse the repository at this point in the history
Non-void function should always return something.
  • Loading branch information
darkcoinproject committed Jan 8, 2015
2 parents caa4fc3 + 371a16a commit 4a6d17e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/darksend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1675,6 +1675,8 @@ bool CDarkSendPool::DoAutomaticDenominating(bool fDryRun, bool ready)
if(!ready) return true;

if(sessionDenom == 0) return true;

return false;
}


Expand Down

0 comments on commit 4a6d17e

Please sign in to comment.