Ownable.sol 207 B

12345678910111213141516
  1. /*
  2. * Ownable
  3. * Base contract with an owner
  4. */
  5. contract Ownable {
  6. address owner;
  7. function Ownable() {
  8. owner = msg.sender;
  9. }
  10. modifier onlyOwner() {
  11. if (msg.sender == owner)
  12. _
  13. }
  14. }