improve docs of base contracts

This commit is contained in:
Manuel Araoz
2016-11-23 17:27:29 -08:00
parent 47d979aa72
commit 35363c01b1
7 changed files with 19 additions and 29 deletions

View File

@ -1,8 +1,11 @@
pragma solidity ^0.4.4;
/*
* Ownable
* Base contract with an owner
*
* Base contract with an owner.
* Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner.
*/
contract Ownable {
address public owner;