26 lines
648 B
Solidity
26 lines
648 B
Solidity
pragma solidity 0.4.24;
|
|
|
|
/**
|
|
* @title UpgradeabilityOwnerStorage
|
|
* @dev This contract keeps track of the upgradeability owner
|
|
*/
|
|
contract UpgradeabilityOwnerStorage {
|
|
// Owner of the contract
|
|
address internal _upgradeabilityOwner;
|
|
|
|
/**
|
|
* @dev Tells the address of the owner
|
|
* @return the address of the owner
|
|
*/
|
|
function upgradeabilityOwner() public view returns (address) {
|
|
return _upgradeabilityOwner;
|
|
}
|
|
|
|
/**
|
|
* @dev Sets the address of the owner
|
|
*/
|
|
function setUpgradeabilityOwner(address newUpgradeabilityOwner) internal {
|
|
_upgradeabilityOwner = newUpgradeabilityOwner;
|
|
}
|
|
}
|