OpenZeppelin / openzeppelin-labs

A space for the community to interact and exchange ideas on the OpenZeppelin platform. Do not use in production!
https://openzeppelin.com/
MIT License
376 stars 116 forks source link

Duplicated owner's fields in EternalProxy #107

Open rstormsf opened 6 years ago

rstormsf commented 6 years ago

there are 2 methods:

    function upgradeabilityOwner() public view returns (address) {
        return _upgradeabilityOwner;
    }

and

    function proxyOwner() public view returns (address) {
        return upgradeabilityOwner();
    }

I don't see any good reason to have those 2