Skip to content

Commit

Permalink
Merge pull request #136 from pirapira/typos
Browse files Browse the repository at this point in the history
Typos
  • Loading branch information
CJentzsch committed Apr 28, 2016
2 parents ce9cb4b + f2b1107 commit 09693c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DAO.sol
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ contract DAOInterface {
function changeProposalDeposit(uint _proposalDeposit) external;

/// @notice Move rewards from the DAORewards managed account
/// @param _toMembers If true rewards are move to the actual reward account
/// @param _toMembers If true rewards are moved to the actual reward account
/// for the DAO. If not then it's moved to the DAO itself
/// @return Whether the call was successful
function retrieveDAOReward(bool _toMembers) external returns (bool _success);
Expand Down Expand Up @@ -530,7 +530,7 @@ contract DAO is DAOInterface, Token, TokenCreation {

// If the curator removed the recipient from the whitelist, close the proposal
// in order to free the deposit and allow unblocking of voters
if (!isRecipientAllowed(p.recipient) && p.open) {
if (!isRecipientAllowed(p.recipient)) {
closeProposal(_proposalID);
p.creator.send(p.proposalDeposit);
return;
Expand Down

0 comments on commit 09693c1

Please sign in to comment.