Skip to content

Commit 09693c1

Browse files
committed
Merge pull request #136 from pirapira/typos
Typos
2 parents ce9cb4b + f2b1107 commit 09693c1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DAO.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ contract DAOInterface {
275275
function changeProposalDeposit(uint _proposalDeposit) external;
276276

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

531531
// If the curator removed the recipient from the whitelist, close the proposal
532532
// in order to free the deposit and allow unblocking of voters
533-
if (!isRecipientAllowed(p.recipient) && p.open) {
533+
if (!isRecipientAllowed(p.recipient)) {
534534
closeProposal(_proposalID);
535535
p.creator.send(p.proposalDeposit);
536536
return;

0 commit comments

Comments
 (0)