Skip to content

Commit

Permalink
Remove Ownable
Browse files Browse the repository at this point in the history
  • Loading branch information
makoto committed Mar 28, 2024
1 parent 607fa18 commit 7505c12
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions contracts/reverseRegistrar/L2ReverseRegistrar.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pragma solidity >=0.8.4;
import "../registry/ENS.sol";
import "./IL2ReverseRegistrar.sol";
import "./SignatureReverseResolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "../resolvers/profiles/ITextResolver.sol";
Expand All @@ -20,7 +19,6 @@ error NotOwnerOfContract();
*/
contract L2ReverseRegistrar is
Multicallable,
Ownable,
IL2ReverseRegistrar,
SignatureReverseResolver
{
Expand Down
3 changes: 1 addition & 2 deletions contracts/reverseRegistrar/SignatureReverseResolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pragma solidity >=0.8.4;

import "../registry/ENS.sol";
import "./ISignatureReverseResolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "../root/Controllable.sol";
Expand All @@ -12,7 +11,7 @@ error InvalidSignature();
error SignatureOutOfDate();
error Unauthorised();

contract SignatureReverseResolver is Ownable, ISignatureReverseResolver {
contract SignatureReverseResolver is ISignatureReverseResolver {
using ECDSA for bytes32;
using LowLevelCallUtils for address;
mapping(bytes32 => uint256) public lastUpdated;
Expand Down

0 comments on commit 7505c12

Please sign in to comment.