File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -145,9 +145,6 @@ contract DAOInterface {
145
145
DAO newDAO;
146
146
}
147
147
148
- // Used to restrict access to certain functions to only DAO Token Holders
149
- modifier onlyTokenholders { _; }
150
-
151
148
/// @dev Constructor setting the Curator and the address
152
149
/// for the contract able to create another DAO as well as the parameters
153
150
/// for the DAO Token Creation
@@ -206,7 +203,7 @@ contract DAOInterface {
206
203
bytes memory _transactionData ,
207
204
uint _debatingPeriod ,
208
205
bool _newCurator
209
- ) onlyTokenholders public returns (uint _proposalID );
206
+ ) public returns (uint _proposalID );
210
207
211
208
/// @notice Check that the proposal with the ID `_proposalID` matches the
212
209
/// transaction which sends `_amount` with data `_transactionData`
@@ -230,7 +227,7 @@ contract DAOInterface {
230
227
function vote (
231
228
uint _proposalID ,
232
229
bool _supportsProposal
233
- ) onlyTokenholders public returns (uint _voteID );
230
+ ) public returns (uint _voteID );
234
231
235
232
/// @notice Checks whether proposal `_proposalID` with transaction data
236
233
/// `_transactionData` has been voted for or rejected, and executes the
You can’t perform that action at this time.
0 commit comments