Skip to content

Commit

Permalink
Added Comments and lic
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptoColm committed May 28, 2016
1 parent e9400ee commit fb473ab
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
26 changes: 25 additions & 1 deletion DAOInterface.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/*
This file is part of the DAO.
The DAO is free software: you can redistribute it and/or modify
it under the terms of the GNU lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The DAO is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU lesser General Public License for more details.
You should have received a copy of the GNU lesser General Public License
along with the DAO. If not, see <http://www.gnu.org/licenses/>.
*/


/*
Standard smart contract for a DAO interface. That defines functions
which are implemented in DAO.sol
*/


import "./TokenCreation.sol";
import "./ManagedAccount.sol";
import "./DAO_Creator.sol";
Expand Down Expand Up @@ -318,4 +342,4 @@ contract DAOInterface {
event ProposalTallied(uint indexed proposalID, bool result, uint quorum);
event NewCurator(address indexed _newCurator);
event AllowedRecipientChanged(address indexed _recipient, bool _allowed);
}
}
26 changes: 25 additions & 1 deletion DAO_Creator.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/*
This file is part of the DAO.
The DAO is free software: you can redistribute it and/or modify
it under the terms of the GNU lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The DAO is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU lesser General Public License for more details.
You should have received a copy of the GNU lesser General Public License
along with the DAO. If not, see <http://www.gnu.org/licenses/>.
*/


/*
Standard smart contract for a Creating a new DAO when split happens
to automate organizational governance and decision-making.
*/


import "DAO.sol";

contract DAO_Creator {
Expand All @@ -17,4 +41,4 @@ contract DAO_Creator {
msg.sender
);
}
}
}

0 comments on commit fb473ab

Please sign in to comment.