diff --git a/implementations/contracts/ERC725/ERC725X.sol b/implementations/contracts/ERC725/ERC725X.sol index 47822a83..8fb99bda 100644 --- a/implementations/contracts/ERC725/ERC725X.sol +++ b/implementations/contracts/ERC725/ERC725X.sol @@ -16,7 +16,7 @@ import "@openzeppelin/contracts/access/Ownable.sol"; * * @author Fabian Vogelsteller */ -contract ERC725X is ERC725XCore, Ownable { +contract ERC725X is Ownable, ERC725XCore { /** * @notice Sets the owner of the contract * @param _newOwner the owner of the contract. diff --git a/implementations/contracts/ERC725/ERC725Y.sol b/implementations/contracts/ERC725/ERC725Y.sol index 79f32786..834d4dab 100644 --- a/implementations/contracts/ERC725/ERC725Y.sol +++ b/implementations/contracts/ERC725/ERC725Y.sol @@ -16,7 +16,7 @@ import "@openzeppelin/contracts/access/Ownable.sol"; * * @author Fabian Vogelsteller */ -contract ERC725Y is ERC725YCore, Ownable { +contract ERC725Y is Ownable, ERC725YCore { /** * @notice Sets the owner of the contract * @param _newOwner the owner of the contract.