diff --git a/contracts/registries/IPAssetRegistry.sol b/contracts/registries/IPAssetRegistry.sol index 808f606a7..00f2278df 100644 --- a/contracts/registries/IPAssetRegistry.sol +++ b/contracts/registries/IPAssetRegistry.sol @@ -190,6 +190,7 @@ contract IPAssetRegistry is IIPAssetRegistry, IPAccountRegistry, Governable { /// @param id The canonical identifier for the IP. /// @return isRegistered Whether the IP was registered into the protocol. function isRegistered(address id) external view returns (bool) { + // TODO: also check the ipAccount has "Name" metadata after clean up permissioned functions. return _records[id].resolver != address(0) || id.code.length != 0; }