mirror of openzeppelin-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openzeppelin-contracts/contracts/ownership/NoOwner.sol

13 lines
441 B

8 years ago
pragma solidity ^0.4.8;
import "./HasNoEther.sol";
import "./HasNoTokens.sol";
import "./HasNoContracts.sol";
/** @title Base contract for contracts that should not own things.
* @author Remco Bloemen <remco@2π.com>
* @devSolves a class of errors where a contract accidentally becomes owner of Ether, Tokens or Owned contracts. See respective base contracts for details.
*/
8 years ago
contract NoOwner is HasNoEther, HasNoTokens, HasNoContracts {
}