From 5f1e3604152a6d30599368561aee34d8d8743961 Mon Sep 17 00:00:00 2001 From: Gerald Iakobinyi-Pich Date: Thu, 21 Dec 2023 05:40:53 +0200 Subject: [PATCH] Fixing TODOs --- contracts/GitcoinPassportDecoder.sol | 9 --------- 1 file changed, 9 deletions(-) diff --git a/contracts/GitcoinPassportDecoder.sol b/contracts/GitcoinPassportDecoder.sol index 52e5b6c..80dc217 100644 --- a/contracts/GitcoinPassportDecoder.sol +++ b/contracts/GitcoinPassportDecoder.sol @@ -98,14 +98,6 @@ contract GitcoinPassportDecoder is function _authorizeUpgrade(address) internal override onlyOwner {} - /** - * @dev Gets the EAS contract. - */ - // TODO this is getter for EAS. Remove this, eas is public ... - function getEASAddress() public view returns (IEAS) { - return eas; - } - /** * @dev Gets providers by version. */ @@ -129,7 +121,6 @@ contract GitcoinPassportDecoder is * @dev Sets the GitcoinResolver contract. * @param _gitcoinResolver The address of the GitcoinResolver contract. */ - // TODO: rename to setGitcoinResolverAddress ??? function setGitcoinResolver(address _gitcoinResolver) external onlyOwner { if (_gitcoinResolver == address(0)) { revert ZeroValue();